Kamrad117/targetprocess-ruby

View on GitHub
lib/target_process/entities/test_case.rb

Summary

Maintainability
A
35 mins
Test Coverage
module TargetProcess
  class TestCase < Base
    has_many :comments
    has_many :messages
    has_many :tag_objects, 'Tag'
    has_many :master_relations, 'Relation'
    has_many :slave_relations, 'Relation'
    has_many :attachments
    has_many :test_plans
    has_many :test_case_runs
    belongs_to :entity_type
    belongs_to :owner, 'GeneralUser'
    belongs_to :last_commented_user, 'GeneralUser'
    belongs_to :project
    belongs_to :user_story
    belongs_to :priority
  end
end