rutema 0.1 → 0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,6 @@
1
+ == 0.2 / 2007-05-21
2
+ * bin/ files included in gem
3
+ * rutemax: missing configuration file is now checked before passed to the system
1
4
  == 0.1 / 2007-05-21
2
5
  * A running system!
3
6
  * Basic XML parser with echo, command and prompt
data/README.txt CHANGED
@@ -6,9 +6,11 @@ Rutema provides the basis for building tools that can manage the execution of te
6
6
 
7
7
  It's purpose is to provide a set of classes and a framework that will allow testers to specify and execute tests in heterogeneous testing environments.
8
8
 
9
- A heterogeneous testing environment would be one where several testing tools are put to use, it's with it's own scripts and ways to define tests.
9
+ A heterogeneous testing environment would be one where several testing tools are put to use, each with it's own scripts and ways to define tests.
10
10
  Rutema will allow you to combine tools, take care of logging, reporting, archiving of results and formalize execution of automated and manual tests.
11
11
 
12
+ For more information look at http://patir.rubyforge.org/rutema
13
+
12
14
  == FEATURES/PROBLEMS:
13
15
 
14
16
  *
data/Rakefile CHANGED
@@ -11,12 +11,14 @@ Hoe.new('rutema', "#{Rutema::VERSION_MAJOR}.#{Rutema::VERSION_MINOR}") do |p|
11
11
  p.author = "Vassilis Rizopoulos"
12
12
  p.email = "riva@braveworld.net"
13
13
  p.summary = 'rutema is a test execution and management framework for heterogeneous testing environments'
14
- p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
14
+ p.description = p.paragraphs_of('README.txt', 1..5).join("\n\n")
15
15
  p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1]
16
16
  p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
17
17
  p.extra_deps<<['patir',">=0.3"]
18
18
  p.extra_deps<<['highline']
19
19
  p.extra_deps<<['mailfactory']
20
+ p.spec_extras={:executables=>["rutemax"],
21
+ :default_executable=>"rutemax"}
20
22
  end
21
23
 
22
- # vim: syntax=Ruby
24
+ # vim: syntax=Ruby
@@ -0,0 +1,9 @@
1
+ # Copyright (c) 2007 Vassilis Rizopoulos. All rights reserved.
2
+ begin
3
+ require 'rutema/system'
4
+ rescue LoadError
5
+ require 'rubygems'
6
+ require 'rutema/system'
7
+ end
8
+
9
+ Rutema::RutemaX.new(ARGV)
@@ -12,7 +12,7 @@ require 'patir/command'
12
12
 
13
13
  module Rutema
14
14
  VERSION_MAJOR=0
15
- VERSION_MINOR=1
15
+ VERSION_MINOR=2
16
16
  #Is raised when an error is found in a specification
17
17
  class ParserError<RuntimeError
18
18
  end
@@ -442,6 +442,7 @@ module Rutema
442
442
  parse_command_line(command_line_args)
443
443
  @logger=Patir.setup_logger(@log_file)
444
444
  begin
445
+ raise "No configuration file defined!" if !@config_file
445
446
  @configuration=RutemaConfigurator.new(@config_file,@logger).configuration
446
447
  @coordinator=Coordinator.new(@configuration,@logger)
447
448
  application_flow
@@ -31,7 +31,6 @@ module TestRutema
31
31
  def test_specification_paths
32
32
  cfg=Rutema::RutemaConfigurator.new("samples/valid_config.rb").configuration
33
33
  assert_not_nil(cfg.tests)
34
- p cfg.tests
35
34
  end
36
35
  end
37
36
  end
metadata CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.1
3
3
  specification_version: 1
4
4
  name: rutema
5
5
  version: !ruby/object:Gem::Version
6
- version: "0.1"
6
+ version: "0.2"
7
7
  date: 2007-05-21 00:00:00 +02:00
8
8
  summary: rutema is a test execution and management framework for heterogeneous testing environments
9
9
  require_paths:
@@ -11,9 +11,9 @@ require_paths:
11
11
  email: riva@braveworld.net
12
12
  homepage:
13
13
  rubyforge_project: patir
14
- description: "It's purpose is to provide a set of classes and a framework that will allow testers to specify and execute tests in heterogeneous testing environments. A heterogeneous testing environment would be one where several testing tools are put to use, it's with it's own scripts and ways to define tests. Rutema will allow you to combine tools, take care of logging, reporting, archiving of results and formalize execution of automated and manual tests. == FEATURES/PROBLEMS: * == SYNOPSIS:"
14
+ description: "== DESCRIPTION: Rutema provides the basis for building tools that can manage the execution of tests as well as an example implementation as proof-of-concept for the ideas behind it. It's purpose is to provide a set of classes and a framework that will allow testers to specify and execute tests in heterogeneous testing environments. A heterogeneous testing environment would be one where several testing tools are put to use, each with it's own scripts and ways to define tests. Rutema will allow you to combine tools, take care of logging, reporting, archiving of results and formalize execution of automated and manual tests. For more information look at http://patir.rubyforge.org/rutema == FEATURES/PROBLEMS: *"
15
15
  autorequire:
16
- default_executable:
16
+ default_executable: rutemax
17
17
  bindir: bin
18
18
  has_rdoc: true
19
19
  required_ruby_version: !ruby/object:Gem::Version::Requirement
@@ -54,8 +54,8 @@ rdoc_options: []
54
54
 
55
55
  extra_rdoc_files: []
56
56
 
57
- executables: []
58
-
57
+ executables:
58
+ - rutemax
59
59
  extensions: []
60
60
 
61
61
  requirements: []