@@ -31,9 +31,13 @@ SpecsFolder = ".\specs\"
3131Dim BlankWorkbookPath
3232Dim BlankInlineWorkbookPath
3333Dim SpecsWorkbookPath
34+ Dim ExampleInlineWorkbookPath
35+ Dim ExampleDisplayWorkbookPath
3436BlankWorkbookPath = ".\Excel-TDD - Blank.xlsm"
3537BlankInlineWorkbookPath = ".\Excel-TDD - Blank - Inline.xlsm"
3638SpecsWorkbookPath = ".\specs\Excel-TDD - Specs.xlsm"
39+ ExampleInlineWorkbookPath = ".\examples\Excel-TDD - Example - Inline.xlsm"
40+ ExampleDisplayWorkbookPath = ".\examples\Excel-TDD - Example - Runner.xlsm"
3741
3842Dim Src
3943Src = Array( _
@@ -95,8 +99,8 @@ End Sub
9599Sub Development
96100 PrintLn vbNewLine & _
97101 "Options:" & vbNewLine & _
98- "- import [src/specs/inline/display/extensions/helpers/all] to [blank/inline/display/specs/all/path...]" & vbNewLine & _
99- "- export [src/specs/inline/display/extensions/helpers/all] from [blank/inline/display/specs/all/path...]" & vbNewLine & _
102+ "- import [src/specs/inline/display/extensions/helpers/all] to [blank/inline/display/specs/example-inline/example-display/ all/path...]" & vbNewLine & _
103+ "- export [src/specs/inline/display/extensions/helpers/all] from [blank/inline/display/specs/all/example-inline/example-display/ path...]" & vbNewLine & _
100104 "- release"
101105
102106 Dim Action
@@ -122,6 +126,10 @@ Sub Development
122126 Execute "import" , "helpers" , "specs"
123127 Execute "import" , "specs" , "specs"
124128 Execute "import" , "inline" , "specs"
129+ Execute "import" , "inline" , "example-inline"
130+ Execute "import" , "display" , "example-display"
131+ Execute "import" , "extensions" , "example-display"
132+ Execute "import" , "helpers" , "example-display"
125133 ElseIf UBound(Parts) < 3 Or (UCase(Parts( 0 )) <> "IMPORT" And UCase(Parts( 0 )) <> "EXPORT" ) Then
126134 PrintLn vbNewLine & "Error: Unrecognized action"
127135 Else
@@ -161,8 +169,12 @@ Sub Execute(Name, ModulesDescription, WorkbookDescription)
161169 Paths = Array(BlankWorkbookPath)
162170 Case "SPECS"
163171 Paths = Array(SpecsWorkbookPath)
172+ Case "EXAMPLE-INLINE"
173+ Paths = Array(ExampleInlineWorkbookPath)
174+ Case "EXAMPLE-DISPLAY"
175+ Paths = Array(ExampleDisplayWorkbookPath)
164176 Case "ALL"
165- Paths = Array(BlankWorkbookPath, BlankInlineWorkbookPath, SpecsWorkbookPath)
177+ Paths = Array(BlankWorkbookPath, BlankInlineWorkbookPath, SpecsWorkbookPath, ExampleInlineWorkbookPath, ExampleDisplayWorkbookPath )
166178 Case Else
167179 Paths = Array(WorkbookDescription)
168180 End Select
0 commit comments