diff --git a/bin/sspec_ify.rb b/bin/sspec_ify.rb new file mode 100755 index 0000000..d236bab --- /dev/null +++ b/bin/sspec_ify.rb @@ -0,0 +1,36 @@ +#!/usr/bin/env ruby + +# Want to use this script on a whole subtree? Find is your friend. +# Something like: +# find . -name "*.rb" -exec ../../../bin/sspec_ify.rb --git \{\} \; + +# If the script gets the --git param, it will git add and git rm the file, +# not just modify and delete it. +use_git = ARGV.delete("--git") + +if ARGV.size != 1 + raise "Please specify a single .rb file to sspec-ify." +end + +old_file = ARGV[0] + +file_text = File.read old_file +indented_text = file_text.split("\n").map { |s| " " + s }.join("\n") + +sspec_text = < self.top, :left => self.left, - :width => 220, :height => 200 - nofill - stroke white - oval :left => @cx - 50, :top => @cy - 50, :radius => 100 - (ticks + 1).times do |i| - radial_line 225 + ((270.0 / ticks) * i), 70..80 - radial_line 225 + ((270.0 / ticks) * i), 45..49 - end - strokewidth 2 - oval :left => @cx - 70, :top => @cy - 70, :radius => 140 - stroke lightgreen - oval :left => @cx - 5, :top => @cy - 5, :radius => 10 - @needle = radial_line 225 + ((270.0 / @range) * @position), 0..90 - end - def ticks; @range / @tick end - def radial_line deg, r - pos = ((deg / 360.0) * (2.0 * Math::PI)) - (Math::PI / 2.0) - line (Math.cos(pos) * r.begin) + @cx, (Math.sin(pos) * r.begin) + @cy, - (Math.cos(pos) * r.end) + @cx, (Math.sin(pos) * r.end) + @cy - end - def position= pos - @position = pos - @needle.remove - append do - @needle = radial_line 225 + ((270.0 / @range) * @position), 0..90 - end - end -end - -Shoes.app do - stack do - para "Enter a number between 0 and 100" - flow do - @p = edit_line - button "OK" do - @s.position = @p.text.to_i - end - end - - @s = speedometer :range => 100, :ticks => 10 - end -end - diff --git a/cases/legacy_examples/misc/speedometer_app.sspec b/cases/legacy_examples/misc/speedometer_app.sspec new file mode 100644 index 0000000..a6b4f92 --- /dev/null +++ b/cases/legacy_examples/misc/speedometer_app.sspec @@ -0,0 +1,58 @@ +--- +----------- app code + # Source: https://www.hanselman.com/blog/the-weekly-source-code-29-ruby-and-shoes-and-the-first-ruby-virus + + class Speedometer < Shoes::Widget + attr_accessor :range, :tick, :position + def initialize opts = {} + @range = opts[:range] || 200 + @tick = opts[:tick] || 10 + @position = opts[:position] || 0 + @cx, @cy = self.left + 110, self.top + 100 + + nostroke + rect :top => self.top, :left => self.left, + :width => 220, :height => 200 + nofill + stroke white + oval :left => @cx - 50, :top => @cy - 50, :radius => 100 + (ticks + 1).times do |i| + radial_line 225 + ((270.0 / ticks) * i), 70..80 + radial_line 225 + ((270.0 / ticks) * i), 45..49 + end + strokewidth 2 + oval :left => @cx - 70, :top => @cy - 70, :radius => 140 + stroke lightgreen + oval :left => @cx - 5, :top => @cy - 5, :radius => 10 + @needle = radial_line 225 + ((270.0 / @range) * @position), 0..90 + end + def ticks; @range / @tick end + def radial_line deg, r + pos = ((deg / 360.0) * (2.0 * Math::PI)) - (Math::PI / 2.0) + line (Math.cos(pos) * r.begin) + @cx, (Math.sin(pos) * r.begin) + @cy, + (Math.cos(pos) * r.end) + @cx, (Math.sin(pos) * r.end) + @cy + end + def position= pos + @position = pos + @needle.remove + append do + @needle = radial_line 225 + ((270.0 / @range) * @position), 0..90 + end + end + end + + Shoes.app do + stack do + para "Enter a number between 0 and 100" + flow do + @p = edit_line + button "OK" do + @s.position = @p.text.to_i + end + end + + @s = speedometer :range => 100, :ticks => 10 + end + end +----------- test code +assert true, "Assert that test code runs at all." diff --git a/cases/legacy_examples/misc/superleg.rb b/cases/legacy_examples/misc/superleg.rb deleted file mode 100644 index d443e78..0000000 --- a/cases/legacy_examples/misc/superleg.rb +++ /dev/null @@ -1,244 +0,0 @@ -require 'CSV' -require 'FileUtils' -###LATEST ISSUES -# "Add button working great" -# List buttons working upon boot but have a lil bit of trouble showing changes after I add into program. -#Biggest problem right now is "delete" button. Copiestask to "removed" folder; but doesn't work like it does in the command line version in corefile.rb. Currently tried different approach without fileutils but getting little to no response. -#login page currently disabled to debug quicker. -class Actions - @myApp - - def initialize(myApp) - @myApp = myApp - end - - def doLogin(username, password) - @myApp.app do - if username == "Schwad" and password == "******" - alert "Successful Login" - caption link("Continue\n", :click => "/index"), align: "center" - else - alert "Incorrect username or password" - end - end - end - - -end -class SuperLeg < Shoes - url '/', :index #make this login later - url '/index', :index - url '/enter', :enter - url '/view', :view - - def login - stack do - @myActions = Actions.new(self) - username = edit_line - password = edit_line :secret => true - button "Login" do - @myActions.doLogin(username.text, password.text) - end - end - end - - # def enter - # flow(width: 800, background: "lightsteelblue") do - # stack width: 800 do - # banner "Welcome to Superleg!\n\n", align: "center" - # end - # stack width: 400 do - # caption link("Tasks to do\n", :click => "/view"), align: "left" - # end - # stack width: 400 do - # caption link("Add tasks\n", :click => "/enter"), align: "right" -# end - # end - # end - - def index - flow do - stack width: 645 do - para "title" - para "sample entry: ' on ; John Smith on Tuesday'.", align: "right" - stack do - para (link("New Task.", :click => "/")) - end - stack do - @edit = edit_line :width => 0.7 - end - flow do - para "Set Task Type" - list_box items: ["Call", "Email", "Bill"], - width: 120, choose: "Call" do |list| - @task.text = list.text - end - @task = para "No task selected" - - para "Set Priority" - list_box items: ["1", "2", "3", "4"], - width: 120, choose: "1" do |list| - @priority.text = list.text - end - @priority = para "No priority selected" - end - - button "Add" do - if confirm("Add #{@edit.text}?") - such_length = File.open("thelist.csv").readlines.size - line_input = @edit.text - @edit = "" - para "added #{line_input}!" - time = Time.new - - if @task.text == "Call" - #line_input.split(//)[0..3].join('') == "call" #old checker - CSV.open("thelist.csv", "ab") do |csv| - csv << [such_length,"call", line_input, "#{time.hour}:#{time.min} #{time.day}/#{time.month}", @priority.text ] - end - - elsif @task.text == "Email" - CSV.open("thelist.csv", "ab") do |csv| - csv << [such_length,"email", line_input, "#{time.hour}:#{time.min} #{time.day}/#{time.month}", @priority.text ] - end - - elsif @task.text == "Bill" - CSV.open("thelist.csv", "ab") do |csv| - csv << [such_length,"bill", line_input, "#{time.hour}:#{time.min} #{time.day}/#{time.month}", @priority.text ] - end - end - end - end - para "\n" - para "Type in the 'number' of the task, and press delete to remove.", align: "right" - flow do - para "Delete Task " - @delete = edit_line :width => 0.1 - button "Delete" do - if confirm("Delete task number #{@delete.text}?") - #such_id = @delete.text - # @delete = "" - time = Time.new - timefile ="#{time.hour}:#{time.min}, #{time.day}/#{time.month}" - - #copy the file #this bit works. - i = 0 - - CSV.foreach("thelist.csv") do |csvbig| - if i == @delete.text.to_i - csvbig << timefile - CSV.open("removed.csv", "ab") do |csv| - csv << csvbig - end - para "\nTask #{i} removed!" - end - i += 1 - end - #delete the file - para arr_of_arrs - CSV.read("thelist.csv", "w") do |what| - what = arr_of_arrs - end - - #f = File::open("thelist.csv", "r") - #dest=File::open("data1.csv", "w") - #f.each_line do |line| - # next if f.lineno == @delete.text.to_i - # dest.write(line) - #end - #f.close - #dest.close - #FileUtils.cp("data1.csv", "thelist.csv") - end - end - end - end - #################### - stack width: 600 do - para "Show Tasks", align: "center" - flow do - button "Calls" do - i = 0 - CSV.foreach("thelist.csv") do |row| - if row[1] == "call" - para "#{i}. #{row[1]} #{row[2]}, added #{row[3]}, priority level #{row[4]}.\n", :margin_left => 645 - end - i += 1 - end - end - button "Emails" do - i = 0 - CSV.foreach("thelist.csv") do |row| - if row[1] == "email" - para "#{i}. #{row[1]} #{row[2]}, added #{row[3]}, priority level #{row[4]}.\n", :margin_left => 645 - end - i += 1 - end - end - button "Bills" do - i = 0 - CSV.foreach("thelist.csv") do |row| - if row[1] == "bill" - para "#{i}. #{row[1]} #{row[2]}, added #{row[3]}, priority level #{row[4]}.\n", :margin_left => 645 - end - i += 1 - end - end - button "All" do - i = 0 - CSV.foreach("thelist.csv") do |row| - if i == 0 - i += 1 - next - end - para "#{i}. #{row[1]} #{row[2]}, added #{row[3]}, priority level #{row[4]}.\n", :margin_left => 645 - i += 1 - end - end - end - flow do - button "Top Priority" do - i = 0 - CSV.foreach("thelist.csv") do |row| - if row[4] == "1" - para "#{i}. #{row[1]} #{row[2]}, added #{row[3]}, priority level #{row[4]}.\n", :margin_left => 645 - end - i += 1 - end - end - button "2nd Priority" do - i = 0 - CSV.foreach("thelist.csv") do |row| - if row[4] == "2" - para "#{i}. #{row[1]} #{row[2]}, added #{row[3]}, priority level #{row[4]}.\n", :margin_left => 645 - end - i += 1 - end - end - button "3rd Priority" do - i = 0 - CSV.foreach("thelist.csv") do |row| - if row[4] == "3" - para "#{i}. #{row[1]} #{row[2]}, added #{row[3]}, priority level #{row[4]}.\n", :margin_left => 645 - end - i += 1 - end - end - button "Lowest Priority" do - i = 0 - CSV.foreach("thelist.csv") do |row| - if row[4].to_i > 3 - para "#{i}. #{row[1]} #{row[2]}, added #{row[3]}, priority level #{row[4]}.\n", :margin_left => 645 - end - i += 1 - end - end - end - caption link("Clear\n\n", :click => "/index") - end - end - end -end - - -Shoes.app title: "SuperLegislator 0.0.1 Beta", :width => 1300, :height => 670 diff --git a/cases/legacy_examples/misc/superleg.sspec b/cases/legacy_examples/misc/superleg.sspec new file mode 100644 index 0000000..e8168db --- /dev/null +++ b/cases/legacy_examples/misc/superleg.sspec @@ -0,0 +1,248 @@ +--- +----------- app code + require 'CSV' + require 'FileUtils' + ###LATEST ISSUES + # "Add button working great" + # List buttons working upon boot but have a lil bit of trouble showing changes after I add into program. + #Biggest problem right now is "delete" button. Copiestask to "removed" folder; but doesn't work like it does in the command line version in corefile.rb. Currently tried different approach without fileutils but getting little to no response. + #login page currently disabled to debug quicker. + class Actions + @myApp + + def initialize(myApp) + @myApp = myApp + end + + def doLogin(username, password) + @myApp.app do + if username == "Schwad" and password == "******" + alert "Successful Login" + caption link("Continue\n", :click => "/index"), align: "center" + else + alert "Incorrect username or password" + end + end + end + + + end + class SuperLeg < Shoes + url '/', :index #make this login later + url '/index', :index + url '/enter', :enter + url '/view', :view + + def login + stack do + @myActions = Actions.new(self) + username = edit_line + password = edit_line :secret => true + button "Login" do + @myActions.doLogin(username.text, password.text) + end + end + end + + # def enter + # flow(width: 800, background: "lightsteelblue") do + # stack width: 800 do + # banner "Welcome to Superleg!\n\n", align: "center" + # end + # stack width: 400 do + # caption link("Tasks to do\n", :click => "/view"), align: "left" + # end + # stack width: 400 do + # caption link("Add tasks\n", :click => "/enter"), align: "right" + # end + # end + # end + + def index + flow do + stack width: 645 do + para "title" + para "sample entry: ' on ; John Smith on Tuesday'.", align: "right" + stack do + para (link("New Task.", :click => "/")) + end + stack do + @edit = edit_line :width => 0.7 + end + flow do + para "Set Task Type" + list_box items: ["Call", "Email", "Bill"], + width: 120, choose: "Call" do |list| + @task.text = list.text + end + @task = para "No task selected" + + para "Set Priority" + list_box items: ["1", "2", "3", "4"], + width: 120, choose: "1" do |list| + @priority.text = list.text + end + @priority = para "No priority selected" + end + + button "Add" do + if confirm("Add #{@edit.text}?") + such_length = File.open("thelist.csv").readlines.size + line_input = @edit.text + @edit = "" + para "added #{line_input}!" + time = Time.new + + if @task.text == "Call" + #line_input.split(//)[0..3].join('') == "call" #old checker + CSV.open("thelist.csv", "ab") do |csv| + csv << [such_length,"call", line_input, "#{time.hour}:#{time.min} #{time.day}/#{time.month}", @priority.text ] + end + + elsif @task.text == "Email" + CSV.open("thelist.csv", "ab") do |csv| + csv << [such_length,"email", line_input, "#{time.hour}:#{time.min} #{time.day}/#{time.month}", @priority.text ] + end + + elsif @task.text == "Bill" + CSV.open("thelist.csv", "ab") do |csv| + csv << [such_length,"bill", line_input, "#{time.hour}:#{time.min} #{time.day}/#{time.month}", @priority.text ] + end + end + end + end + para "\n" + para "Type in the 'number' of the task, and press delete to remove.", align: "right" + flow do + para "Delete Task " + @delete = edit_line :width => 0.1 + button "Delete" do + if confirm("Delete task number #{@delete.text}?") + #such_id = @delete.text + # @delete = "" + time = Time.new + timefile ="#{time.hour}:#{time.min}, #{time.day}/#{time.month}" + + #copy the file #this bit works. + i = 0 + + CSV.foreach("thelist.csv") do |csvbig| + if i == @delete.text.to_i + csvbig << timefile + CSV.open("removed.csv", "ab") do |csv| + csv << csvbig + end + para "\nTask #{i} removed!" + end + i += 1 + end + #delete the file + para arr_of_arrs + CSV.read("thelist.csv", "w") do |what| + what = arr_of_arrs + end + + #f = File::open("thelist.csv", "r") + #dest=File::open("data1.csv", "w") + #f.each_line do |line| + # next if f.lineno == @delete.text.to_i + # dest.write(line) + #end + #f.close + #dest.close + #FileUtils.cp("data1.csv", "thelist.csv") + end + end + end + end + #################### + stack width: 600 do + para "Show Tasks", align: "center" + flow do + button "Calls" do + i = 0 + CSV.foreach("thelist.csv") do |row| + if row[1] == "call" + para "#{i}. #{row[1]} #{row[2]}, added #{row[3]}, priority level #{row[4]}.\n", :margin_left => 645 + end + i += 1 + end + end + button "Emails" do + i = 0 + CSV.foreach("thelist.csv") do |row| + if row[1] == "email" + para "#{i}. #{row[1]} #{row[2]}, added #{row[3]}, priority level #{row[4]}.\n", :margin_left => 645 + end + i += 1 + end + end + button "Bills" do + i = 0 + CSV.foreach("thelist.csv") do |row| + if row[1] == "bill" + para "#{i}. #{row[1]} #{row[2]}, added #{row[3]}, priority level #{row[4]}.\n", :margin_left => 645 + end + i += 1 + end + end + button "All" do + i = 0 + CSV.foreach("thelist.csv") do |row| + if i == 0 + i += 1 + next + end + para "#{i}. #{row[1]} #{row[2]}, added #{row[3]}, priority level #{row[4]}.\n", :margin_left => 645 + i += 1 + end + end + end + flow do + button "Top Priority" do + i = 0 + CSV.foreach("thelist.csv") do |row| + if row[4] == "1" + para "#{i}. #{row[1]} #{row[2]}, added #{row[3]}, priority level #{row[4]}.\n", :margin_left => 645 + end + i += 1 + end + end + button "2nd Priority" do + i = 0 + CSV.foreach("thelist.csv") do |row| + if row[4] == "2" + para "#{i}. #{row[1]} #{row[2]}, added #{row[3]}, priority level #{row[4]}.\n", :margin_left => 645 + end + i += 1 + end + end + button "3rd Priority" do + i = 0 + CSV.foreach("thelist.csv") do |row| + if row[4] == "3" + para "#{i}. #{row[1]} #{row[2]}, added #{row[3]}, priority level #{row[4]}.\n", :margin_left => 645 + end + i += 1 + end + end + button "Lowest Priority" do + i = 0 + CSV.foreach("thelist.csv") do |row| + if row[4].to_i > 3 + para "#{i}. #{row[1]} #{row[2]}, added #{row[3]}, priority level #{row[4]}.\n", :margin_left => 645 + end + i += 1 + end + end + end + caption link("Clear\n\n", :click => "/index") + end + end + end + end + + + Shoes.app title: "SuperLegislator 0.0.1 Beta", :width => 1300, :height => 670 +----------- test code +assert true, "Assert that test code runs at all." diff --git a/cases/legacy_examples/simple/calc.rb b/cases/legacy_examples/simple/calc.rb deleted file mode 100644 index 11f0920..0000000 --- a/cases/legacy_examples/simple/calc.rb +++ /dev/null @@ -1,71 +0,0 @@ -class Calc - def initialize - @number = 0 - @previous = nil - @op = nil - end - - def to_s - @number&.to_s || @previous.to_s - end - - (0..9).each do |n| - define_method "press_#{n}" do - @number = @number.to_i * 10 + n - end - end - - def press_clear - @number = 0 - @previous = 0 - end - - {'add' => '+', 'sub' => '-', 'times' => '*', 'div' => '/'}.each do |meth, op| - define_method "press_#{meth}" do - if @op - press_equals - end - @op = op - @previous, @number = @number, nil - end - end - - def press_equals - @number = @previous.send(@op, @number.to_i) - @op = nil - end - -end - -number_field = nil -number = Calc.new -Shoes.app :height => 250, :width => 200, :resizable => false do - background "#EEC".."#996", :curve => 5, :margin => 2 - - stack :margin => 2 do - - stack :margin => 8 do - number_field = para strong(number) - end - - flow :width => 218, :margin => 4 do - %w(7 8 9 / 4 5 6 * 1 2 3 - 0 Clr = +).each do |btn| - button btn, :width => 46, :height => 46 do - method = case btn - when /[0-9]/; 'press_'+btn - when 'Clr'; 'press_clear' - when '='; 'press_equals' - when '+'; 'press_add' - when '-'; 'press_sub' - when '*'; 'press_times' - when '/'; 'press_div' - end - - number.send(method) - number_field.replace strong(number) - end - end - end - end - -end diff --git a/cases/legacy_examples/simple/calc.sspec b/cases/legacy_examples/simple/calc.sspec new file mode 100644 index 0000000..1e16a55 --- /dev/null +++ b/cases/legacy_examples/simple/calc.sspec @@ -0,0 +1,75 @@ +--- +----------- app code + class Calc + def initialize + @number = 0 + @previous = nil + @op = nil + end + + def to_s + @number&.to_s || @previous.to_s + end + + (0..9).each do |n| + define_method "press_#{n}" do + @number = @number.to_i * 10 + n + end + end + + def press_clear + @number = 0 + @previous = 0 + end + + {'add' => '+', 'sub' => '-', 'times' => '*', 'div' => '/'}.each do |meth, op| + define_method "press_#{meth}" do + if @op + press_equals + end + @op = op + @previous, @number = @number, nil + end + end + + def press_equals + @number = @previous.send(@op, @number.to_i) + @op = nil + end + + end + + number_field = nil + number = Calc.new + Shoes.app :height => 250, :width => 200, :resizable => false do + background "#EEC".."#996", :curve => 5, :margin => 2 + + stack :margin => 2 do + + stack :margin => 8 do + number_field = para strong(number) + end + + flow :width => 218, :margin => 4 do + %w(7 8 9 / 4 5 6 * 1 2 3 - 0 Clr = +).each do |btn| + button btn, :width => 46, :height => 46 do + method = case btn + when /[0-9]/; 'press_'+btn + when 'Clr'; 'press_clear' + when '='; 'press_equals' + when '+'; 'press_add' + when '-'; 'press_sub' + when '*'; 'press_times' + when '/'; 'press_div' + end + + number.send(method) + number_field.replace strong(number) + end + end + end + end + + end +----------- test code +assert true, "Assert that test code runs at all." diff --git a/cases/legacy_examples/simple/image.rb b/cases/legacy_examples/simple/image.rb deleted file mode 100644 index 14d3c43..0000000 --- a/cases/legacy_examples/simple/image.rb +++ /dev/null @@ -1,21 +0,0 @@ -Shoes.app do - background "#eee" - @list = stack do - @img = image "#{DIR}/docs/static/man-builds.png" - para "Enter a image URL to download:", :margin => [10, 8, 10, 0] - flow :margin => 10 do - @url = edit_line :width => -120 - @url.text ='http://shoes.mvmanila.com/public/images/dino.jpg' - button "Download", :width => 120 do - @list.append do - stack do - background "#eee".."#ccd" - stack :margin => 10 do - image @url.text - end - end - end - end - end - end -end diff --git a/cases/legacy_examples/simple/image.sspec b/cases/legacy_examples/simple/image.sspec new file mode 100644 index 0000000..0340e43 --- /dev/null +++ b/cases/legacy_examples/simple/image.sspec @@ -0,0 +1,25 @@ +--- +----------- app code + Shoes.app do + background "#eee" + @list = stack do + @img = image "#{DIR}/docs/static/man-builds.png" + para "Enter a image URL to download:", :margin => [10, 8, 10, 0] + flow :margin => 10 do + @url = edit_line :width => -120 + @url.text ='http://shoes.mvmanila.com/public/images/dino.jpg' + button "Download", :width => 120 do + @list.append do + stack do + background "#eee".."#ccd" + stack :margin => 10 do + image @url.text + end + end + end + end + end + end + end +----------- test code +assert true, "Assert that test code runs at all." diff --git a/results/niente/expected/results-local.yaml b/results/niente/expected/results-local.yaml index ae904bd..423aa00 100644 --- a/results/niente/expected/results-local.yaml +++ b/results/niente/expected/results-local.yaml @@ -11,5 +11,11 @@ add_drawables: :pass dsl/slot: self_slot: :pass + legacy_examples/misc: + speedometer_app: :pass + superleg: :pass + legacy_examples/simple: + calc: :pass + image: :pass manual/examples: example_1: :pass diff --git a/results/scarpe-wasm/expected/results-wasm.yaml b/results/scarpe-wasm/expected/results-wasm.yaml index 643ad8f..2e1bea4 100644 --- a/results/scarpe-wasm/expected/results-wasm.yaml +++ b/results/scarpe-wasm/expected/results-wasm.yaml @@ -2,14 +2,20 @@ :display: scarpe-wasm :config: wasm :results: + drawables/button: + button_events: :pass + basic_click: :pass + legacy_examples/simple: + image: :fail + calc: :pass dsl/app: add_drawables: :pass - dsl/slot: - self_slot: :pass drawables/para: para_replace: :pass - drawables/button: - basic_click: :pass - button_events: :pass manual/examples: - example_1: :pass \ No newline at end of file + example_1: :pass + dsl/slot: + self_slot: :pass + legacy_examples/misc: + superleg: :fail + speedometer_app: :fail diff --git a/results/scarpe-webview/expected/results-local-calzini.yaml b/results/scarpe-webview/expected/results-local-calzini.yaml index 33e1441..3721c4e 100644 --- a/results/scarpe-webview/expected/results-local-calzini.yaml +++ b/results/scarpe-webview/expected/results-local-calzini.yaml @@ -11,5 +11,11 @@ add_drawables: :pass dsl/slot: self_slot: :pass + legacy_examples/misc: + speedometer_app: :pass + superleg: :pass + legacy_examples/simple: + calc: :pass + image: :pass manual/examples: - example_1: :pass \ No newline at end of file + example_1: :pass diff --git a/results/scarpe-webview/expected/results-local-tiranti.yaml b/results/scarpe-webview/expected/results-local-tiranti.yaml index 33e1441..f1a9fb2 100644 --- a/results/scarpe-webview/expected/results-local-tiranti.yaml +++ b/results/scarpe-webview/expected/results-local-tiranti.yaml @@ -1,6 +1,6 @@ --- :display: scarpe-webview -:config: local-calzini +:config: local-tiranti :results: drawables/button: basic_click: :pass @@ -11,5 +11,11 @@ add_drawables: :pass dsl/slot: self_slot: :pass + legacy_examples/misc: + speedometer_app: :pass + superleg: :pass + legacy_examples/simple: + calc: :pass + image: :pass manual/examples: - example_1: :pass \ No newline at end of file + example_1: :pass