Merge "DatabaseMssql: Don't duplicate body of makeList()"
[mediawiki.git] / tests / browser / features / step_definitions / create_and_follow_wiki_link_steps.rb
blobba41f7fbdb5c919d3c22ea5bd01e7050ad112182
1 Given(/^I go to the "(.+)" page with content "(.+)"$/) do |page_title, page_content|
2   @wikitext = page_content
3   on(APIPage).create page_title, page_content
4   step "I am on the #{page_title} page"
5 end
7 Given(/^I am on the (.+) page$/) do |article|
8   article = article.gsub(/ /, '_')
9   visit(ZtargetPage, :using_params => {:article_name => article})
10 end
12 Given(/^I create page "(.*?)" with content "(.*?)"$/) do |page_title, page_content|
13   on(APIPage).create page_title, page_content
14 end
17 When(/^I click the Link Target link$/) do
18   on(ZtargetPage).link_target_page_link
19 end
21 Then(/^I should be on the Link Target Test Page$/) do
22   @browser.url.should match /Link_Target_Test_Page/
23 end
25 Then(/^the page content should contain "(.*?)"$/) do |content|
26   on(ZtargetPage).page_content.should match content
27 end