Sha256: 6bfa3e639185a122f10ccc8fe046b2322f0fd06de29f47d3b8198dd5fede2df0
Contents?: true
Size: 1.99 KB
Versions: 56
Compression:
Stored size: 1.99 KB
Contents
require 'spec_helper' feature 'Lessons Flow', organization_workspace: :test do let(:exercise) { create(:exercise, name: 'E1') } let!(:complement) { create(:complement) } let!(:lesson) { create(:lesson, name: 'L1', exercises: [exercise]) } let!(:chapter) { create(:chapter, name: 'C1', lessons: [lesson]) } let(:other_organization) { create(:organization, name: 'other') } let(:other_book) { create(:book) } let(:other_exercise) { create(:exercise) } let!(:other_complement) { create(:complement, book: other_book) } let!(:other_lesson) { create(:lesson, exercises: [other_exercise]) } let!(:other_chapter) { create(:chapter, lessons: [other_lesson], book: other_book) } before { reindex_current_organization! } before { reindex_organization! other_organization } scenario 'visit lesson in path' do visit "/lessons/#{lesson.id}" expect(page).to have_text('L1') end scenario 'visit lesson not in path' do visit "/lessons/#{other_lesson.id}" expect(page).to have_text('You may have mistyped the address or the page may have moved') end scenario 'visit chapter in path' do visit "/chapters/#{chapter.id}" expect(page).to have_text('C1') end scenario 'visit chapter not in path' do visit "/chapters/#{other_chapter.id}" expect(page).to have_text('You may have mistyped the address or the page may have moved') end scenario 'visit exercise in path' do visit "/exercises/#{exercise.id}" expect(page).to have_text('E1') end scenario 'visit exercise not in path' do visit "/exercises/#{other_exercise.id}" expect(page).to have_text('You may have mistyped the address or the page may have moved') end scenario 'visit exercise in path' do visit "/complements/#{complement.id}" expect(page).to have_text(complement.name) end scenario 'visit exercise not in path' do visit "/complements/#{other_complement.id}" expect(page).to have_text('You may have mistyped the address or the page may have moved') end end
Version data entries
56 entries across 56 versions & 1 rubygems