blob: b21c954440e6a3020c95a31b03039a5db92a97bf (
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
assert true
end
end
|