Sha256: a49705e5c51482af2238ad5caba42914d403795d058e17f093cf8e77e84340f1
Contents?: true
Size: 872 Bytes
Versions: 22
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
22 entries across 22 versions & 1 rubygems