summaryrefslogtreecommitdiff
path: root/subplot/vendored/files.yaml
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-09-19 14:51:37 +0000
committerLars Wirzenius <liw@liw.fi>2021-09-19 14:51:37 +0000
commit676c43f0e5da9c06f7f587b84e0bc6dc98c5ba3d (patch)
tree5d5c6cb7a43771f4223fda2aa0980fc2a78a0c06 /subplot/vendored/files.yaml
parenta189b49e4989d60bf6adbaf19f0e0489cd964d8e (diff)
parente5ce55667326fadf260f97b3ba189f82566f12f4 (diff)
downloadbumper-rs-main.tar.gz
Merge branch 'cleanup' into 'main'HEADmain
chore: drop unnecessary &, as pointed out by clippy See merge request larswirzenius/bumper!24
Diffstat (limited to 'subplot/vendored/files.yaml')
-rw-r--r--subplot/vendored/files.yaml83
1 files changed, 0 insertions, 83 deletions
diff --git a/subplot/vendored/files.yaml b/subplot/vendored/files.yaml
deleted file mode 100644
index f18b8cd..0000000
--- a/subplot/vendored/files.yaml
+++ /dev/null
@@ -1,83 +0,0 @@
-- given: file {filename}
- function: files_create_from_embedded
- types:
- filename: file
-
-- given: file {filename_on_disk} from {embedded_filename}
- function: files_create_from_embedded_with_other_name
- types:
- embedded_filename: file
-
-- given: file {filename} has modification time {year}-{month}-{day} {hour}:{minute}:{second}
- function: files_touch_with_timestamp
-
-- when: I write "(?P<text>.*)" to file (?P<filename>\S+)
- regex: true
- function: files_create_from_text
-
-- when: I remember metadata for file {filename}
- function: files_remember_metadata
-
-- when: I touch file {filename}
- function: files_touch
-
-- then: file {filename} exists
- function: files_file_exists
-
-- then: file {filename} does not exist
- function: files_file_does_not_exist
-
-- then: only files (?P<filenames>.+) exist
- function: files_only_these_exist
- regex: true
-
-- then: file (?P<filename>\S+) contains "(?P<data>.*)"
- regex: true
- function: files_file_contains
-
-- then: file (?P<filename>\S+) matches regex /(?P<regex>.*)/
- regex: true
- function: files_file_matches_regex
-
-- then: file (?P<filename>\S+) matches regex "(?P<regex>.*)"
- regex: true
- function: files_file_matches_regex
-
-- then: files {filename1} and {filename2} match
- function: files_match
-
-- then: file {filename} has same metadata as before
- function: files_has_remembered_metadata
-
-- then: file {filename} has different metadata from before
- function: files_has_different_metadata
-
-- then: file {filename} has changed from before
- function: files_has_different_metadata
-
-- then: file {filename} has a very recent modification time
- function: files_mtime_is_recent
-
-- then: file {filename} has a very old modification time
- function: files_mtime_is_ancient
-
-- given: a directory {path}
- function: files_make_directory
-
-- when: I create directory {path}
- function: files_make_directory
-
-- when: I remove directory {path}
- function: files_remove_directory
-
-- then: directory {path} exists
- function: files_directory_exists
-
-- then: directory {path} does not exist
- function: files_directory_does_not_exist
-
-- then: directory {path} is empty
- function: files_directory_is_empty
-
-- then: directory {path} is not empty
- function: files_directory_is_not_empty