Sha256: b011fa921c6233dbd858813e14da9f812f47840f2e7a9f1290566d7df7746bd6
Contents?: true
Size: 891 Bytes
Versions: 17
Compression:
Stored size: 891 Bytes
Contents
# -*- coding: utf-8 -*- require 'acceptance_helper' feature 'リンク元の表示', :exclude_selenium => true do scenario '日表示にリンク元が表示されている' do append_default_diary visit '/' today = Date.today.strftime("%Y年%m月%d日") page.find('h2', :text => today).click_link today within('div.day') { page.should have_css('div[class="refererlist"]') within('div.refererlist') { page.should have_content "http://www.example.com" } } end scenario '更新画面にリンク元が表示されている' do append_default_diary visit "/" today = Date.today.strftime("%Y年%m月%d日") page.find('h2', :text => today).click_link today within('div.day div.refererlist') { page.should have_link "http://www.example.com" } end end # Local Variables: # mode: ruby # indent-tabs-mode: t # tab-width: 3 # ruby-indent-level: 3 # End: # vim: ts=3
Version data entries
17 entries across 17 versions & 1 rubygems