Sha256: 20146d15b36e8cc5ee14d090ed3285267688e5dde094990622af02fe64c43bd8

Contents?: true

Size: 850 Bytes

Versions: 8

Compression:

Stored size: 850 Bytes

Contents

require 'helper'

describe Flipper::UI::Actions::File do
  describe "GET /images/logo.png" do
    before do
      get '/images/logo.png'
    end

    it "responds with 200" do
      last_response.status.should be(200)
    end
  end

  describe "GET /css/application.css" do
    before do
      get '/css/application.css'
    end

    it "responds with 200" do
      last_response.status.should be(200)
    end
  end

  describe "GET /fonts/bootstrap/glyphicons-halflings-regular.eot" do
    before do
      get '/fonts/bootstrap/glyphicons-halflings-regular.eot'
    end

    it "responds with 200" do
      last_response.status.should be(200)
    end
  end

  describe "GET /octicons/octicons.eot" do
    before do
      get '/octicons/octicons.eot'
    end

    it "responds with 200" do
      last_response.status.should be(200)
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
flipper-ui-0.7.1 spec/flipper/ui/actions/file_spec.rb
flipper-ui-0.7.0 spec/flipper/ui/actions/file_spec.rb
flipper-ui-0.7.0.beta6 spec/flipper/ui/actions/file_spec.rb
flipper-ui-0.7.0.beta5 spec/flipper/ui/actions/file_spec.rb
flipper-ui-0.7.0.beta4 spec/flipper/ui/actions/file_spec.rb
flipper-ui-0.2.0.beta5 spec/flipper/ui/actions/file_spec.rb
flipper-ui-0.2.0.beta4 spec/flipper/ui/actions/file_spec.rb
flipper-ui-0.2.0.beta3 spec/flipper/ui/actions/file_spec.rb