1 ; This is test of many of the features of the Installer
2 ; Prints out debugging info if run from CLI
4 ( transcript "On making \"T:Fred\"..." )
7 ( prompt "I will now create the directory \"T:Fred\"" )
14 ( prompt "Copying all devices to Fred." )
15 ( help @copyfiles-help )
17 ( dest "T:fred/angie" )
18 ( pattern "#?.device" )
24 ( prompt "Copying one device to Fred." )
25 ( help @copylib-help )
26 ( source "LIBS:version.library" )
27 ( dest "T:fred/angie" )
33 "Some instructions need to be added to the \"S:user-startup\" so that your system will be properly configured to use FredApp." )
34 ( help "No help for this function" )
35 ( command "List DEVS:\n" "assign Fred: T:\n" )
39 ( prompt "Tooltype test" )
40 ( help "No help here either" )
47 ( prompt "Creating a textfile..." )
48 ( help "The 'NO HELP' generation continues!" )
49 ( dest "T:fred/prayer" )
50 ( append "In the begining there was the Amiga 1000, and this was good...\n" )
51 ( include "DEVS:Mountlist" )
55 ;( run "info >t:fred/result"
56 ; ( prompt "Running 'info'" )
57 ( run "C:List \"\" SYS: >t:fred/result"
58 ( prompt "Running 'C:List'" )
59 ( help "This will only work from the CLI!" )
64 ( makeassign "FRED" "T:" ( safe ) )
65 ( makeassign "FRED" "T:fred" )
68 ( rename "Fred:result" "Fred:data"
69 ( prompt "Renaming 'result' to 'data'" )
70 ( help "So why wasn't it named that in the first place??" )
74 ( delete "FRED:angie/printer.device"
75 ( prompt "Going to delete Fred's printer." )
76 ( help "That's nice..." )
80 ( message "End of first set of tests!" )
84 ( prompt "OK, where was that directory??" )
90 ( debug "Directory was " name )
94 ( prompt "OK, where was that file??" )
95 ( help @askfile-help )
96 ( default "FRED:angie" )
100 ( debug "File was " name )
104 ( prompt "OK, what should I have named that data file?" )
105 ( help @askstring-help )
106 ( default "happy_file" )
110 ( debug "String was " name )
114 ( prompt "How old are you?" )
115 ( help @asknumber-help )
121 ( debug "Number was " name )
125 ( prompt "How do you rate things so far?" )
126 ( help @askchoice-help )
127 ( choices "Pretty good" "OK" "Only fair" "Rather dismal" )
132 ( debug "Choice was " name )
136 ( prompt "What would you like to eat?" )
137 ( help @askoptions-help )
138 ( choices "Hamburger" "Fries" "Salad" "Strawberry Shake" "Apple Pie" )
143 ( debug "Options bits were " name )
147 ( prompt "Should Puerto Rico become the next state?" )
148 ( help "It's up to YOU." )
149 ( choices "Make a State" "Nuke 'Em" )
154 ( debug "Result of AskBool was " name )
158 ( prompt "Please hit ABORT!" )
159 ( help "Pretty please..." )
164 "Well, I hope you liked this test of the emergency installer system!"