watirspec 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
data/History.rdoc CHANGED
@@ -1,3 +1,7 @@
1
+ === Version 0.1.5 / 2010-04-08
2
+
3
+ * fixed a problem where HtmlFormatter threw an ugly exception due to the problem when browser was not opened
4
+
1
5
  === Version 0.1.4 / 2010-04-06
2
6
 
3
7
  * added dependency for win32screenshot
data/README.rdoc CHANGED
@@ -162,7 +162,7 @@ From now on, add all common functionality into ui-test-common/lib
162
162
 
163
163
  == KNOWN PROBLEMS (& SOLUTIONS)
164
164
 
165
- = PROBLEM #1
165
+ === PROBLEM #1
166
166
 
167
167
  If you see the following error message when running watirspec:
168
168
  R6034. An application has made an attempt to load the C runtime library incorrectly.
@@ -27,11 +27,12 @@ module WatiRspec
27
27
  FileUtils.mv @output_dir, File.join(archive_dir, "#{File.basename(@output_dir)}_#{File.mtime(@output_dir).strftime("%y%m%d_%H%M%S")}")
28
28
  end
29
29
  FileUtils.mkdir_p(@files_dir)
30
+ @files_saved_during_example = []
30
31
  super
31
32
  end
32
33
 
33
34
  def example_started(example) # :nodoc:
34
- @files_saved_during_example = []
35
+ @files_saved_during_example.clear
35
36
  super
36
37
  end
37
38
 
@@ -107,6 +108,6 @@ module WatiRspec
107
108
  @files_saved_during_example.unshift(:desc => description, :path => file_path)
108
109
  file_path
109
110
  end
110
-
111
+
111
112
  end
112
113
  end
@@ -1,3 +1,3 @@
1
1
  module WatiRspec
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
data/todo.txt CHANGED
@@ -1 +1,2 @@
1
- viga, et kui n�iteks inner table ei ole otsene element tabeli all, vaid n�iteks on veel vahepeal ka span v�i form vms, siis seda tabelit ei leita...
1
+ uus nime-idee - watirmelon
2
+
Binary file
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 4
9
- version: 0.1.4
8
+ - 5
9
+ version: 0.1.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - Jarmo Pertman
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-04-07 00:00:00 +03:00
17
+ date: 2010-04-08 00:00:00 +03:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -163,6 +163,7 @@ files:
163
163
  - watirspec-0.1.1.gem
164
164
  - watirspec-0.1.2.gem
165
165
  - watirspec-0.1.3.gem
166
+ - watirspec-0.1.4.gem
166
167
  has_rdoc: true
167
168
  homepage: http://github.com/jarmo/WatiRspec
168
169
  licenses: []
@@ -204,6 +205,6 @@ rubyforge_project:
204
205
  rubygems_version: 1.3.6
205
206
  signing_key:
206
207
  specification_version: 3
207
- summary: watirspec 0.1.4
208
+ summary: watirspec 0.1.5
208
209
  test_files: []
209
210