First checkin
This commit is contained in:
parent
f207e2c8b7
commit
90b30db9e8
260 changed files with 37349 additions and 0 deletions
0
test/fixtures/.gitkeep
vendored
Normal file
0
test/fixtures/.gitkeep
vendored
Normal file
11
test/fixtures/users.yml
vendored
Normal file
11
test/fixtures/users.yml
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
|
||||
|
||||
# This model initially had no columns defined. If you add columns to the
|
||||
# model remove the '{}' from the fixture names and add the columns immediately
|
||||
# below each fixture, per the syntax in the comments below
|
||||
#
|
||||
one: {}
|
||||
# column: value
|
||||
#
|
||||
two: {}
|
||||
# column: value
|
||||
0
test/functional/.gitkeep
Normal file
0
test/functional/.gitkeep
Normal file
7
test/functional/admin/admin_controller_test.rb
Normal file
7
test/functional/admin/admin_controller_test.rb
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
require 'test_helper'
|
||||
|
||||
class Admin::AdminControllerTest < ActionController::TestCase
|
||||
# test "the truth" do
|
||||
# assert true
|
||||
# end
|
||||
end
|
||||
7
test/functional/admin/call_for_papers_controller_test.rb
Normal file
7
test/functional/admin/call_for_papers_controller_test.rb
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
require 'test_helper'
|
||||
|
||||
class Admin::CallForPapersControllerTest < ActionController::TestCase
|
||||
# test "the truth" do
|
||||
# assert true
|
||||
# end
|
||||
end
|
||||
7
test/functional/admin/conference_controller_test.rb
Normal file
7
test/functional/admin/conference_controller_test.rb
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
require 'test_helper'
|
||||
|
||||
class Admin::ConferenceControllerTest < ActionController::TestCase
|
||||
# test "the truth" do
|
||||
# assert true
|
||||
# end
|
||||
end
|
||||
7
test/functional/admin/people_controller_test.rb
Normal file
7
test/functional/admin/people_controller_test.rb
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
require 'test_helper'
|
||||
|
||||
class Admin::PeopleControllerTest < ActionController::TestCase
|
||||
# test "the truth" do
|
||||
# assert true
|
||||
# end
|
||||
end
|
||||
7
test/functional/admin/users_controller_test.rb
Normal file
7
test/functional/admin/users_controller_test.rb
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
require 'test_helper'
|
||||
|
||||
class Admin::UsersControllerTest < ActionController::TestCase
|
||||
# test "the truth" do
|
||||
# assert true
|
||||
# end
|
||||
end
|
||||
7
test/functional/admin/venue_controller_test.rb
Normal file
7
test/functional/admin/venue_controller_test.rb
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
require 'test_helper'
|
||||
|
||||
class Admin::VenueControllerTest < ActionController::TestCase
|
||||
# test "the truth" do
|
||||
# assert true
|
||||
# end
|
||||
end
|
||||
7
test/functional/home_controller_test.rb
Normal file
7
test/functional/home_controller_test.rb
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
require 'test_helper'
|
||||
|
||||
class HomeControllerTest < ActionController::TestCase
|
||||
# test "the truth" do
|
||||
# assert true
|
||||
# end
|
||||
end
|
||||
0
test/integration/.gitkeep
Normal file
0
test/integration/.gitkeep
Normal file
12
test/performance/browsing_test.rb
Normal file
12
test/performance/browsing_test.rb
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
require 'test_helper'
|
||||
require 'rails/performance_test_help'
|
||||
|
||||
class BrowsingTest < ActionDispatch::PerformanceTest
|
||||
# Refer to the documentation for all available options
|
||||
# self.profile_options = { :runs => 5, :metrics => [:wall_time, :memory]
|
||||
# :output => 'tmp/performance', :formats => [:flat] }
|
||||
|
||||
def test_homepage
|
||||
get '/'
|
||||
end
|
||||
end
|
||||
13
test/test_helper.rb
Normal file
13
test/test_helper.rb
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
ENV["RAILS_ENV"] = "test"
|
||||
require File.expand_path('../../config/environment', __FILE__)
|
||||
require 'rails/test_help'
|
||||
|
||||
class ActiveSupport::TestCase
|
||||
# Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
|
||||
#
|
||||
# Note: You'll currently still have to declare fixtures explicitly in integration tests
|
||||
# -- they do not yet inherit this setting
|
||||
fixtures :all
|
||||
|
||||
# Add more helper methods to be used by all tests here...
|
||||
end
|
||||
0
test/unit/.gitkeep
Normal file
0
test/unit/.gitkeep
Normal file
4
test/unit/helpers/admin/admin_helper_test.rb
Normal file
4
test/unit/helpers/admin/admin_helper_test.rb
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
require 'test_helper'
|
||||
|
||||
class Admin::AdminHelperTest < ActionView::TestCase
|
||||
end
|
||||
4
test/unit/helpers/admin/call_for_papers_helper_test.rb
Normal file
4
test/unit/helpers/admin/call_for_papers_helper_test.rb
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
require 'test_helper'
|
||||
|
||||
class Admin::CallForPapersHelperTest < ActionView::TestCase
|
||||
end
|
||||
4
test/unit/helpers/admin/conference_helper_test.rb
Normal file
4
test/unit/helpers/admin/conference_helper_test.rb
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
require 'test_helper'
|
||||
|
||||
class Admin::ConferenceHelperTest < ActionView::TestCase
|
||||
end
|
||||
4
test/unit/helpers/admin/people_helper_test.rb
Normal file
4
test/unit/helpers/admin/people_helper_test.rb
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
require 'test_helper'
|
||||
|
||||
class Admin::PeopleHelperTest < ActionView::TestCase
|
||||
end
|
||||
4
test/unit/helpers/admin/users_helper_test.rb
Normal file
4
test/unit/helpers/admin/users_helper_test.rb
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
require 'test_helper'
|
||||
|
||||
class Admin::UsersHelperTest < ActionView::TestCase
|
||||
end
|
||||
4
test/unit/helpers/admin/venue_helper_test.rb
Normal file
4
test/unit/helpers/admin/venue_helper_test.rb
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
require 'test_helper'
|
||||
|
||||
class Admin::VenueHelperTest < ActionView::TestCase
|
||||
end
|
||||
4
test/unit/helpers/home_helper_test.rb
Normal file
4
test/unit/helpers/home_helper_test.rb
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
require 'test_helper'
|
||||
|
||||
class HomeHelperTest < ActionView::TestCase
|
||||
end
|
||||
7
test/unit/user_test.rb
Normal file
7
test/unit/user_test.rb
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
require 'test_helper'
|
||||
|
||||
class UserTest < ActiveSupport::TestCase
|
||||
# test "the truth" do
|
||||
# assert true
|
||||
# end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue