Sha256: 91aeaf1a1299fe02503862a0a43640a4af69a7807be1199e18a2e4ebbae3a06a
Contents?: true
Size: 872 Bytes
Versions: 12
Compression:
Stored size: 872 Bytes
Contents
require 'helper' RSpec.describe Flipper::UI::Actions::File do describe "GET /images/logo.png" do before do get '/images/logo.png' end it "responds with 200" do expect(last_response.status).to be(200) end end describe "GET /css/application.css" do before do get '/css/application.css' end it "responds with 200" do expect(last_response.status).to 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 expect(last_response.status).to be(200) end end describe "GET /octicons/octicons.eot" do before do get '/octicons/octicons.eot' end it "responds with 200" do expect(last_response.status).to be(200) end end end
Version data entries
12 entries across 12 versions & 1 rubygems