mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-06 21:46:17 +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
|