60 |
61 |
We're sorry, but something went wrong.
62 |
63 |
If you are the application owner check the logs for more information.
64 |
65 |
66 |
67 |
--------------------------------------------------------------------------------
/test/dummy/public/apple-touch-icon-precomposed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasl-lab/duck_record/93d2b89c55dff82ebda0103b282184b5f6959f58/test/dummy/public/apple-touch-icon-precomposed.png
--------------------------------------------------------------------------------
/test/dummy/public/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasl-lab/duck_record/93d2b89c55dff82ebda0103b282184b5f6959f58/test/dummy/public/apple-touch-icon.png
--------------------------------------------------------------------------------
/test/dummy/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasl-lab/duck_record/93d2b89c55dff82ebda0103b282184b5f6959f58/test/dummy/public/favicon.ico
--------------------------------------------------------------------------------
/test/dummy/test/fixtures/contacts.yml:
--------------------------------------------------------------------------------
1 | # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2 |
3 | one:
4 | email: MyString
5 | name: MyString
6 | phone: MyString
7 |
8 | two:
9 | email: MyString
10 | name: MyString
11 | phone: MyString
12 |
--------------------------------------------------------------------------------
/test/dummy/test/models/contact_test.rb:
--------------------------------------------------------------------------------
1 | require "test_helper"
2 |
3 | class ContactTest < ActiveSupport::TestCase
4 | # test "the truth" do
5 | # assert true
6 | # end
7 | end
8 |
--------------------------------------------------------------------------------
/test/test_helper.rb:
--------------------------------------------------------------------------------
1 | # Configure Rails Environment
2 | ENV["RAILS_ENV"] = "test"
3 |
4 | require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
5 | ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)]
6 | require "rails/test_help"
7 |
8 | # Filter out Minitest backtrace while allowing backtrace from other libraries
9 | # to be shown.
10 | Minitest.backtrace_filter = Minitest::BacktraceFilter.new
11 |
12 | Rails::TestUnitReporter.executable = "bin/test"
13 |
14 | # Load fixtures from the engine
15 | if ActiveSupport::TestCase.respond_to?(:fixture_path=)
16 | ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
17 | ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
18 | ActiveSupport::TestCase.file_fixture_path = ActiveSupport::TestCase.fixture_path + "/files"
19 | ActiveSupport::TestCase.fixtures :all
20 | end
21 |
--------------------------------------------------------------------------------