Re-namespacing a bit to clear out some fairly old stuff from the top level

This commit is contained in:
Dan Buch
2013-01-22 19:10:10 -05:00
parent ab43fb0146
commit 92f7543872
485 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# Read about fixtures at http://ar.rubyonrails.org/classes/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:
name: "John Doe"
email: "john@doe.com"
two:
name: "Jane Doe"
email: "janeybear@yahoo.com"
three:
name: "Manny Bananny"
email: "hunka@burninluv.us"

View File

@@ -0,0 +1,13 @@
# Read about fixtures at http://ar.rubyonrails.org/classes/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:
username: johndoe
hashed_password: 019768a0e586a21e3250db985405554ccde798fc
two:
username: janedoe
hashed_password: 019768a0e586a21e3250db985405554ccde798fc

View File

@@ -0,0 +1,9 @@
require 'test_helper'
class FooControllerTest < ActionController::TestCase
test "should get index" do
get :index
assert_response :success
end
end

View File

@@ -0,0 +1,9 @@
require 'test_helper'
class IndexControllerTest < ActionController::TestCase
test "should get index" do
get :index
assert_response :success
end
end

View File

@@ -0,0 +1,9 @@
require 'test_helper'
class ListControllerTest < ActionController::TestCase
test "should get index" do
get :index
assert_response :success
end
end

View File

@@ -0,0 +1,9 @@
require 'test_helper'
class PeopleControllerTest < ActionController::TestCase
test "should get list" do
get :list
assert_response :success
end
end

View File

@@ -0,0 +1,8 @@
require 'test_helper'
class UserControllerTest < ActionController::TestCase
test "oh lordy" do
assert true
end
end

View File

@@ -0,0 +1,9 @@
require 'test_helper'
require 'rails/performance_test_help'
# Profiling results for each test method are written to tmp/performance.
class BrowsingTest < ActionDispatch::PerformanceTest
def test_homepage
get '/'
end
end

View 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

View File

@@ -0,0 +1,4 @@
require 'test_helper'
class FooHelperTest < ActionView::TestCase
end

View File

@@ -0,0 +1,4 @@
require 'test_helper'
class IndexHelperTest < ActionView::TestCase
end

View File

@@ -0,0 +1,4 @@
require 'test_helper'
class ListHelperTest < ActionView::TestCase
end

View File

@@ -0,0 +1,4 @@
require 'test_helper'
class PeopleHelperTest < ActionView::TestCase
end

View File

@@ -0,0 +1,4 @@
require 'test_helper'
class UserHelperTest < ActionView::TestCase
end

View File

@@ -0,0 +1,8 @@
require 'test_helper'
class PersonTest < ActiveSupport::TestCase
# Replace this with your real tests.
test "the truth" do
assert true
end
end

View File

@@ -0,0 +1,8 @@
require 'test_helper'
class UserTest < ActiveSupport::TestCase
# Replace this with your real tests.
test "the truth" do
assert true
end
end