Skip to content

Commit

Permalink
Updated the test scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
Felipe Pina committed Jun 19, 2010
1 parent 5b86952 commit a5cb1c4
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/3/cen-3.1.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
-- Scenario 3.1
-----------------------------------------------------------------------------

local cen = "3.1"
cen = "Scenario " .. cen .. ":"

require("uuid")

id = uuid.create("bin")
print(cen)
print(#id, id)
4 changes: 4 additions & 0 deletions test/3/cen-3.2.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
-- Scenario 3.2
-----------------------------------------------------------------------------

local cen = "3.2"
cen = "Scenario " .. cen .. ":"

require("uuid")

id = uuid.create("str")
print(cen)
print(#id, id)
4 changes: 4 additions & 0 deletions test/3/cen-3.3.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
-- Scenario 3.3
-----------------------------------------------------------------------------

local cen = "3.3"
cen = "Scenario " .. cen .. ":"

require("uuid")

id = uuid.create("siv")
print(cen)
print(#id, id)
4 changes: 4 additions & 0 deletions test/3/cen-3.4.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
-- Scenario 3.4
-----------------------------------------------------------------------------

local cen = "3.4"
cen = "Scenario " .. cen .. ":"

require("uuid")

id = uuid.create("txt")
print(cen)
print(#id, id)

0 comments on commit a5cb1c4

Please sign in to comment.