Railsモデルの1つをテストしていますが、システムのRubyがクラッシュし続けますか? これは以前にも Growl で発生しましたが、System の ruby では発生しませんでした。すでに再起動しましたが、まだ発生しています。を使用Ruby-1.9.3-p194
していますが、 で同じクラッシュが発生しruby-1.9.3-p0
ます。私の仕様は無害に思えますが、なぜこれが起こっているのかわかりません。
仕様:
インデントでごめんなさい。
「spec_helper」が必要
describe "Admin pages" do
subject { page}
describe "when not signed in" do
before { visit admin_path }
it { should have_selector('title', text: 'Sign in') }
end
describe "when signed in as an admin" do
before do
sign_in
visit admin_path
end
describe "Admin navigation menu" do
it { should have_css('.nav-header', text: 'Content') }
it { should have_link('Dashboard', href: admin_path) }
it { should have_link('News', href: admin_posts_path) }
it { should have_link('Events', href: admin_events_path) }
it { should have_link('Photos', href: admin_photos_path) }
it { should have_css('.nav-header', text: 'Your Account') }
it { should have_link('Settings', href: admin_settings_path) }
it { should have_link('Help', href: admin_help_path) }
describe "should be on every admin page" do
after { should have_admin_navigation }
it { visit admin_path }
it { visit admin_posts_path }
it { visit admin_photos_path }
it { visit admin_settings_path }
end
describe "should not be on any other pages" do
before { visit root_path }
it { should_not have_css('#admin-navigation') }
end
end
describe "Dashboard (index) page" do
before { visit admin_path }
it { should have_selector('h3', text: 'Dashboard') }
it { should have_selector('title', text: full_title('Admin Dashboard')) }
end
describe "Posts page" do
before { visit admin_posts_path }
it { should have_selector('h3', text: 'Posts') }
it { should have_selector('table') }
it { should have_selector('th', text: 'Title') }
it { should have_selector('th', text: 'Content') }
it { should have_selector('th', text: 'Published On') }
end
describe "Events page" do
before { visit admin_events_path }
it { should have_selector('h3', text: 'Events') }
it { should have_selector('input') }
end
end
end
フォーマットを保持する要点としてのシステム クラッシュ レポート。
編集:コメントして絞り込みましたが、エラーは@second_page
のファクトリーと関係があります。