Sha256: 0a523aa710839fe0e3aac631d7f4afcc4055ee9c38ff0c18bf7cd8fa0ae579e6
Contents?: true
Size: 626 Bytes
Versions: 15
Compression:
Stored size: 626 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 /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
15 entries across 15 versions & 1 rubygems