-
Notifications
You must be signed in to change notification settings - Fork 6
Args
msuarz edited this page Nov 3, 2010
·
1 revision
Scenario: Retweet Given a tweet by "limadelic" with content "check out Raconteur!" When I retweet it The update text should be "RT @limadelic check out Raconteur!"
[TestMethod]
public void Retweet()
{
Given_a_tweet_by__with_content("limadelic", "check out Raconteur!");
When_I_retweet_it();
The_update_text_should_be("RT @limadelic check out Raconteur!");
}
void Given_a_tweet_by__with_content(string Author, string Tweet) { ... }
void When_I_retweet_it() { ... }
void The_update_text_should_be(string Retweet) { ... }