blob: cd59da535b09965c99f55dafc956524ba2d3d679 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
Given /^I want to decrypt (.*)/ do | input |
pending # express the regexp above with the code you wish you had
end
Given /^I want to encrypt (.*)/ do | input |
pending # express the regexp above with the code you wish you had
end
Then /^the result should be (.*) on the screen$/ do |expected|
pending # express the regexp above with the code you wish you had
end
|