diff options
author | Gareth Rees <gareth@garethrees.co.uk> | 2017-03-22 13:36:04 +0000 |
---|---|---|
committer | Gareth Rees <gareth@garethrees.co.uk> | 2017-03-22 13:36:04 +0000 |
commit | 30f48c5d6c9b2f800e21eebb5a1dd56ff5241446 (patch) | |
tree | dcd2b0576b4e18ed15bd7c091c8fa25362e7ed5b /spec/alavetelitheme_spec.rb | |
parent | a9dfb2ea21181266984d01810ac5c458c500e381 (diff) | |
parent | 0dee8c3bd06dd8779500667018185fab6dcee04e (diff) |
Merge branch 'master' into develop
Diffstat (limited to 'spec/alavetelitheme_spec.rb')
-rw-r--r-- | spec/alavetelitheme_spec.rb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/spec/alavetelitheme_spec.rb b/spec/alavetelitheme_spec.rb index 0bb0fab..6d2b366 100644 --- a/spec/alavetelitheme_spec.rb +++ b/spec/alavetelitheme_spec.rb @@ -1,11 +1,12 @@ +# -*- encoding : utf-8 -*- # If defined, ALAVETELI_TEST_THEME will be loaded in config/initializers/theme_loader ALAVETELI_TEST_THEME = 'alavetelitheme' require File.expand_path(File.join(File.dirname(__FILE__),'..','..','..','..','spec','spec_helper')) -describe "testing the truth" do +describe 'testing the truth' do - it 'should be true' do - assert true - end + it 'should be true' do + expect(true).to eq(true) + end end |