diff options
author | utvk <utvk@users.noreply.github.com> | 2017-02-11 12:33:06 +0100 |
---|---|---|
committer | utvk <utvk@users.noreply.github.com> | 2017-02-11 12:33:06 +0100 |
commit | 2404cabeddb33870c3919838c4f1542cc3d8a559 (patch) | |
tree | a3f000ef9439cad1ef26a6ebab4ec2bde5937292 /spec/alavetelitheme_spec.rb | |
parent | 5ed5c70cfb3ed7ba2cece7229388a52a15479a77 (diff) |
merge changes upstream
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 |