mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-13 23:48:55 +01:00
12 lines
244 B
Ruby
12 lines
244 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'test_helper'
|
|
|
|
class ProjectCategoryTest < ActiveSupport::TestCase
|
|
test 'fixtures are valid' do
|
|
ProjectCategory.find_each do |project_category|
|
|
assert project_category.valid?
|
|
end
|
|
end
|
|
end
|