summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo k <mo@mokhan.ca>2012-08-14 12:23:12 -0600
committermo k <mo@mokhan.ca>2012-08-14 12:23:12 -0600
commit7062ecf586fd405262f55da07458516063dfd825 (patch)
tree00128907bfc3a7f54c5ce88071f577fd3a6a9b1b
parent0d9ceb061baf8d2d3d3e6164d22c4caa1bbbe544 (diff)
split decryption and encryption feature.
-rw-r--r--features/decryption.feature7
-rw-r--r--features/encryption.feature8
2 files changed, 11 insertions, 4 deletions
diff --git a/features/decryption.feature b/features/decryption.feature
new file mode 100644
index 0000000..4c2ed1c
--- /dev/null
+++ b/features/decryption.feature
@@ -0,0 +1,7 @@
+Feature: Decryption
+ In order to decrypt a message
+ I want to be able to decrypt a secret message
+
+ Scenario: Decrypt a message
+ Given I have entered blah
+ Then the result should be halb on the screen
diff --git a/features/encryption.feature b/features/encryption.feature
index 4c2ed1c..20cf117 100644
--- a/features/encryption.feature
+++ b/features/encryption.feature
@@ -1,7 +1,7 @@
-Feature: Decryption
- In order to decrypt a message
- I want to be able to decrypt a secret message
+Feature: Encryption
+ In order to encrypt a message
+ I want to be able to encrypt a secret message
- Scenario: Decrypt a message
+ Scenario: Encrypt a message
Given I have entered blah
Then the result should be halb on the screen