mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-10 03:08:50 +01:00
Simplify requiring of test helpers
This commit is contained in:
parent
d0cec167a8
commit
2386e67dec
59 changed files with 59 additions and 59 deletions
|
|
@ -1,4 +1,4 @@
|
|||
require_relative '../test_helper'
|
||||
require 'test_helper'
|
||||
|
||||
class CalendarControllerTest < ActionController::TestCase
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
|
||||
require 'test_helper'
|
||||
|
||||
class ContextActionsDataTest < ActionController::TestCase
|
||||
tests StatsController
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
|
||||
require 'test_helper'
|
||||
|
||||
class ContextsControllerTest < ActionController::TestCase
|
||||
fixtures :users, :preferences, :contexts
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
|
||||
require 'test_helper'
|
||||
|
||||
class DataControllerTest < ActionController::TestCase
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
|
||||
require 'test_helper'
|
||||
|
||||
class FeedlistControllerTest < ActionController::TestCase
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
|
||||
require 'test_helper'
|
||||
|
||||
class IntegrationsControllerTest < ActionController::TestCase
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
|
||||
require 'test_helper'
|
||||
|
||||
class LoginControllerTest < ActionController::TestCase
|
||||
fixtures :preferences, :users
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
|
||||
require 'test_helper'
|
||||
|
||||
class MailgunControllerTest < ActionController::TestCase
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
|
||||
require 'test_helper'
|
||||
|
||||
class MessageGatewayTest < ActiveSupport::TestCase
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
|
||||
require 'test_helper'
|
||||
|
||||
class NotesControllerTest < ActionController::TestCase
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
|
||||
require 'test_helper'
|
||||
|
||||
class PreferencesControllerTest < ActionController::TestCase
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
|
||||
require 'test_helper'
|
||||
|
||||
class ProjectsControllerTest < ActionController::TestCase
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
|
||||
require 'test_helper'
|
||||
|
||||
class RecurringTodosControllerTest < ActionController::TestCase
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
|
||||
require 'test_helper'
|
||||
|
||||
class SearchControllerTest < ActionController::TestCase
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
|
||||
require 'test_helper'
|
||||
|
||||
class StatsControllerTest < ActionController::TestCase
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
|
||||
require 'test_helper'
|
||||
|
||||
class TodosControllerTest < ActionController::TestCase
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
|
||||
require 'test_helper'
|
||||
|
||||
class UsersControllerTest < ActionController::TestCase
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue