Sha256: 3dbee0370829460b594480221b0e3631d09d686567eabb5e2963e1df2e7ebff8
Contents?: true
Size: 806 Bytes
Versions: 1
Compression:
Stored size: 806 Bytes
Contents
require 'test_helper' class NavigationTest < ActionDispatch::IntegrationTest test 'can access moment-timezonejs' do get '/assets/moment-timezone.js' assert_response :success end test 'moment-timezonejs response is for the expected version' do get 'assets/moment-timezone.js' assert_match(/VERSION = "0\.0\.6"/, @response.body) end test 'can access moment-timezone-data' do get '/assets/moment-timezone-data/links.js' assert_response :success get '/assets/moment-timezone-data/meta.js' assert_response :success get '/assets/moment-timezone-data/rules-since-2000.js' assert_response :success get '/assets/moment-timezone-data/rules.js' assert_response :success get '/assets/moment-timezone-data/zones.js' assert_response :success end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
moment-timezonejs-rails-0.0.6.1 | test/integration/navigation_test.rb |