fix spec for Travis
did
committed Mar 10, 2017
commit 32fc4c5e0942e380b064a1c54aa00f5a79098787
Showing 3
changed files with
17 additions
and 17 deletions
Gemfile.lock
+15
-15
| @@ | @@ -40,7 +40,7 @@ GEM |
| attr_extras (4.4.0) | |
| autoprefixer-rails (6.3.3.1) | |
| execjs | |
| - | bson (4.1.1) |
| + | bson (4.2.1) |
| byebug (8.2.5) | |
| chronic (0.10.2) | |
| chunky_png (1.3.8) | |
| @@ | @@ -65,14 +65,14 @@ GEM |
| compass-import-once (1.0.5) | |
| sass (>= 3.2, < 3.5) | |
| concurrent-ruby (1.0.5) | |
| - | coveralls (0.8.15) |
| + | coveralls (0.8.19) |
| json (>= 1.8, < 3) | |
| simplecov (~> 0.12.0) | |
| term-ansicolor (~> 1.3) | |
| thor (~> 0.19.1) | |
| - | tins (>= 1.6.0, < 2) |
| + | tins (~> 1.6) |
| crass (1.0.2) | |
| - | diff-lcs (1.2.5) |
| + | diff-lcs (1.3) |
| docile (1.1.5) | |
| dragonfly (1.0.12) | |
| addressable (~> 2.3) | |
| @@ | @@ -87,12 +87,12 @@ GEM |
| httparty (0.13.7) | |
| json (~> 1.8) | |
| multi_xml (>= 0.5.2) | |
| - | i18n (0.7.0) |
| + | i18n (0.8.1) |
| i18n-spec (0.6.0) | |
| iso | |
| iso (0.2.2) | |
| i18n | |
| - | json (1.8.3) |
| + | json (1.8.6) |
| json_spec (1.1.4) | |
| multi_json (~> 1.0) | |
| rspec (>= 2.0, < 4.0) | |
| @@ | @@ -107,7 +107,7 @@ GEM |
| stringex (~> 2.6.0) | |
| mail (2.6.4) | |
| mime-types (>= 1.16, < 4) | |
| - | memory_profiler (0.9.6) |
| + | memory_profiler (0.9.8) |
| method_source (0.8.2) | |
| mime-types (2.6.2) | |
| mimetype-fu (0.1.2) | |
| @@ | @@ -123,7 +123,7 @@ GEM |
| mini_portile2 (~> 2.1.0) | |
| nokogumbo (1.4.10) | |
| nokogiri | |
| - | origin (2.2.0) |
| + | origin (2.2.2) |
| pony (1.11) | |
| mail (>= 2.0) | |
| pry (0.10.4) | |
| @@ | @@ -134,11 +134,11 @@ GEM |
| byebug (~> 8.0) | |
| pry (~> 0.10) | |
| public_suffix (2.0.5) | |
| - | puma (3.6.0) |
| + | puma (3.8.0) |
| rack (2.0.1) | |
| rack-cache (1.6.1) | |
| rack (>= 0.4) | |
| - | rack-mini-profiler (0.10.1) |
| + | rack-mini-profiler (0.10.2) |
| rack (>= 1.2.0) | |
| rack-rewrite (1.5.1) | |
| rack-test (0.6.3) | |
| @@ | @@ -176,15 +176,15 @@ GEM |
| sprockets (3.5.2) | |
| concurrent-ruby (~> 1.0) | |
| rack (> 1, < 3) | |
| - | stackprof (0.2.9) |
| + | stackprof (0.2.10) |
| stringex (2.6.1) | |
| - | term-ansicolor (1.3.2) |
| + | term-ansicolor (1.4.0) |
| tins (~> 1.0) | |
| - | thor (0.19.1) |
| + | thor (0.19.4) |
| thread_safe (0.3.6) | |
| - | tilt (2.0.5) |
| + | tilt (2.0.6) |
| timecop (0.8.1) | |
| - | tins (1.12.0) |
| + | tins (1.13.2) |
| tzinfo (1.2.2) | |
| thread_safe (~> 0.1) | |
| yui-compressor (0.12.0) | |
spec/fixtures/default/app/views/pages/all.liquid.haml
+1
-1
| @@ | @@ -11,6 +11,6 @@ published: true |
| {% endfor %} | |
| </ul> | |
| - | <!-- TEST -->{{ site.index.children | map: 'title' | join: " - " }}<!-- TEST --> |
| + | <!-- TEST -->{{ site.index.children | map: 'title' | sort | join: " - " }}<!-- TEST --> |
| {% endblock %} | |
spec/integration/server/nav_spec.rb
+1
-1
| @@ | @@ -30,7 +30,7 @@ describe Locomotive::Steam::Server do |
| end | |
| it 'lists all the pages from the site liquid drop' do | |
| - | is_expected.to include('<!-- TEST -->About Us - Music - Store - Contact Us - Events - Basic page - A sample contest - Various uses of the with_scope tag - Grunge leaders - Tags - Unlisted pages - Archives - All the pages - Layouts - Songs<!-- TEST -->') |
| + | is_expected.to include('<!-- TEST -->A sample contest - About Us - All the pages - Archives - Basic page - Contact Us - Events - Grunge leaders - Layouts - Music - Songs - Store - Tags - Unlisted pages - Various uses of the with_scope tag<!-- TEST -->') |
| end | |
| describe 'with wrapper' do | |