blob: 6d2b366a3e5768cc05ad344f849d6fca6909d115 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
it 'should be true' do
expect(true).to eq(true)
end
end
|