blob: 510b3012eb5413f8f0f8c27387191eafcbcccf18 (
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
|