summaryrefslogtreecommitdiff
path: root/subplot/files.yaml
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-12-13 12:40:16 +0200
committerLars Wirzenius <liw@liw.fi>2020-12-13 12:51:22 +0200
commit95048665bfec3d981c76d01df96d81dbf9597a3b (patch)
tree256f9d8fd5853f7af93a4e65486145803cdcea24 /subplot/files.yaml
parent979628f86910890118b6f591633bd1e884b2cdf1 (diff)
downloadcontractor2-95048665bfec3d981c76d01df96d81dbf9597a3b.tar.gz
doc: add start of architecture and acceptance criteria document
Diffstat (limited to 'subplot/files.yaml')
-rw-r--r--subplot/files.yaml58
1 files changed, 58 insertions, 0 deletions
diff --git a/subplot/files.yaml b/subplot/files.yaml
new file mode 100644
index 0000000..5777a8e
--- /dev/null
+++ b/subplot/files.yaml
@@ -0,0 +1,58 @@
+- given: file {filename}
+ function: files_create_from_embedded
+
+- given: file {filename_on_disk} from {embedded_filename}
+ function: files_create_from_embedded_with_other_name
+
+- 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