Class: KanoahRSpecFormatter::Config::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/kanoah_rspec_formatter/configuration.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



15
16
17
18
19
20
21
22
# File 'lib/kanoah_rspec_formatter/configuration.rb', line 15

def initialize
  @base_url    = nil
  @test_run_id = nil
  @project_id  = nil
  @environment = nil
  @username    = nil
  @password    = nil
end

Instance Attribute Details

#base_urlObject

Returns the value of attribute base_url.



13
14
15
# File 'lib/kanoah_rspec_formatter/configuration.rb', line 13

def base_url
  @base_url
end

#environmentObject

Returns the value of attribute environment.



13
14
15
# File 'lib/kanoah_rspec_formatter/configuration.rb', line 13

def environment
  @environment
end

#passwordObject

Returns the value of attribute password.



13
14
15
# File 'lib/kanoah_rspec_formatter/configuration.rb', line 13

def password
  @password
end

#project_idObject

Returns the value of attribute project_id.



13
14
15
# File 'lib/kanoah_rspec_formatter/configuration.rb', line 13

def project_id
  @project_id
end

#test_run_idObject

Returns the value of attribute test_run_id.



13
14
15
# File 'lib/kanoah_rspec_formatter/configuration.rb', line 13

def test_run_id
  @test_run_id
end

#usernameObject

Returns the value of attribute username.



13
14
15
# File 'lib/kanoah_rspec_formatter/configuration.rb', line 13

def username
  @username
end