aboutsummaryrefslogtreecommitdiffstats
path: root/spec/alavetelitheme_spec.rb
diff options
context:
space:
mode:
authorGareth Rees <gareth@garethrees.co.uk>2017-01-19 11:41:09 +0000
committerGareth Rees <gareth@garethrees.co.uk>2017-01-19 11:41:09 +0000
commitf9de65e75642248f267746fedd74a99deaef3c25 (patch)
treeae4dbb62f5003133c741b70b0b1cbf6cc428ba5b /spec/alavetelitheme_spec.rb
parentfdce813c50a5788ba85460ed15c30a6e8ba2f366 (diff)
Rspec uses expect, not assert
Diffstat (limited to 'spec/alavetelitheme_spec.rb')
-rw-r--r--spec/alavetelitheme_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/alavetelitheme_spec.rb b/spec/alavetelitheme_spec.rb
index 510b301..6d2b366 100644
--- a/spec/alavetelitheme_spec.rb
+++ b/spec/alavetelitheme_spec.rb
@@ -3,10 +3,10 @@
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
+ expect(true).to eq(true)
end
end