Sha256: 0223cf5c68ed4436d937ee9b16f19a2cd171b098fcefe79b1a642a614f35e399

Contents?: true

Size: 1.46 KB

Versions: 9

Compression:

Stored size: 1.46 KB

Contents

require 'spec_helper'

describe "Picture Library", js: true do

  before do
    authorize_as_admin
  end

  describe "Tagging" do

    before do
      picture = FactoryGirl.create(:picture, tag_list: 'tag1', name: 'TaggedWith1')
      picture = FactoryGirl.create(:picture, tag_list: 'tag2', name: 'TaggedWith2')
    end

    it "it should be possible to filter tags by clicking on its name in the tag list" do
      visit '/admin/pictures'
      click_on 'tag1 (1)'
      page.should have_content 'TaggedWith1'
      page.should_not have_content 'TaggedWith2'
    end

    it "it should be possible to undo tag filtering by clicking on an active tag name" do
      visit '/admin/pictures'
      click_on 'tag1 (1)'
      page.should_not have_content 'TaggedWith2'
      click_on 'tag1 (1)'
      page.should have_content 'TaggedWith2'
    end

    it "it should be possible to tighten the tag scope by clicking on another tag name" do
      visit '/admin/pictures'
      click_on 'tag1 (1)'
      click_on 'tag2 (1)'
      page.should have_content "You don't have any images in your archive"
    end

  end

  describe "Filter by tag" do

    before do
      FactoryGirl.create(:picture, tag_list: 'bla')
    end

    it "should list all applied tags" do
      visit '/admin/pictures'
      page.should have_content 'bla'
    end

    it "should be possible to filter pictures by tag" do
      visit '/admin/pictures'
      click_on 'bla (1)'
      page.should have_content 'bla'
    end

  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
alchemy_cms-3.0.4 spec/features/admin/picture_library_integration_spec.rb
alchemy_cms-3.0.3 spec/features/admin/picture_library_integration_spec.rb
alchemy_cms-3.0.2 spec/features/admin/picture_library_integration_spec.rb
alchemy_cms-3.0.1 spec/features/admin/picture_library_integration_spec.rb
alchemy_cms-3.0.0 spec/features/admin/picture_library_integration_spec.rb
alchemy_cms-3.0.0.rc8 spec/features/admin/picture_library_integration_spec.rb
alchemy_cms-3.0.0.rc7 spec/features/admin/picture_library_integration_spec.rb
alchemy_cms-3.0.0.rc6 spec/features/admin/picture_library_integration_spec.rb
alchemy_cms-3.0.0.rc5 spec/features/admin/picture_library_integration_spec.rb