436a11d Add some siple tests

Authored and Committed by jcajka 6 years ago
86 files changed. 14013 lines added. 0 lines removed.
1.8/test/import-with-vendor-app/app/Dockerfile
file added
+8
1.8/test/import-with-vendor-app/app/Gopkg.lock
file added
+15
1.8/test/import-with-vendor-app/app/Gopkg.toml
file added
+26
1.8/test/import-with-vendor-app/app/LICENSE.md
file added
+21
1.8/test/import-with-vendor-app/app/README.md
file added
+18
1.8/test/import-with-vendor-app/app/go-md2man.1.md
file added
+23
1.8/test/import-with-vendor-app/app/md2man.go
file added
+51
1.8/test/import-with-vendor-app/app/md2man/md2man.go
file added
+19
1.8/test/import-with-vendor-app/app/md2man/roff.go
file added
+301
1.8/test/import-with-vendor-app/app/md2man/roff_test.go
file added
+83
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/.gitignore
file added
+8
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/.travis.yml
file added
+30
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/LICENSE.txt
file added
+29
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/README.md
file added
+292
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/block.go
file added
+1450
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/block_test.go
file added
+1781
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/doc.go
file added
+32
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/html.go
file added
+950
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/inline.go
file added
+1154
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/inline_test.go
file added
+1272
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/latex.go
file added
+332
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/markdown.go
file added
+931
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/markdown_test.go
file added
+75
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/ref_test.go
file added
+128
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/smartypants.go
file added
+430
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Amps and angle encoding.html
file added
+17
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Amps and angle encoding.text
file added
+21
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Auto links.html
file added
+18
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Auto links.text
file added
+13
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Backslash escapes.html
file added
+123
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Backslash escapes.text
file added
+126
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Blockquotes with code blocks.html
file added
+15
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Blockquotes with code blocks.text
file added
+11
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Code Blocks.html
file added
+18
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Code Blocks.text
file added
+14
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Code Spans.html
file added
+5
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Code Spans.text
file added
+6
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Hard-wrapped paragraphs with list-like lines no empty line before block.html
file added
+14
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Hard-wrapped paragraphs with list-like lines no empty line before block.text
file added
+8
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Hard-wrapped paragraphs with list-like lines.html
file added
+8
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Hard-wrapped paragraphs with list-like lines.text
file added
+8
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Horizontal rules.html
file added
+71
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Horizontal rules.text
file added
+67
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Inline HTML (Advanced).html
file added
+15
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Inline HTML (Advanced).text
file added
+15
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Inline HTML (Simple).html
file added
+72
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Inline HTML (Simple).text
file added
+69
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Inline HTML comments.html
file added
+13
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Inline HTML comments.text
file added
+13
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Links, inline style.html
file added
+11
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Links, inline style.text
file added
+12
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Links, reference style.html
file added
+52
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Links, reference style.text
file added
+71
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Links, shortcut references.html
file added
+9
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Links, shortcut references.text
file added
+20
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Literal quotes in titles.html
file added
+3
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Literal quotes in titles.text
file added
+7
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Markdown Documentation - Basics.html
file added
+314
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Markdown Documentation - Basics.text
file added
+306
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Markdown Documentation - Syntax.html
file added
+946
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Markdown Documentation - Syntax.text
file added
+888
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Nested blockquotes.html
file added
+9
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Nested blockquotes.text
file added
+5
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Ordered and unordered lists.html
file added
+166
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Ordered and unordered lists.text
file added
+131
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Strong and em together.html
file added
+7
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Strong and em together.text
file added
+7
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Tabs.html
file added
+26
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Tabs.text
file added
+21
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Tidyness.html
file added
+9
1.8/test/import-with-vendor-app/app/vendor/github.com/russross/blackfriday/testdata/Tidyness.text
file added
+5
1.8/test/import-with-vendor-app/s2i-build
file added
+2
1.8/test/import-without-vendor-app/app/Dockerfile
file added
+8
1.8/test/import-without-vendor-app/app/Gopkg.lock
file added
+15
1.8/test/import-without-vendor-app/app/Gopkg.toml
file added
+26
1.8/test/import-without-vendor-app/app/LICENSE.md
file added
+21
1.8/test/import-without-vendor-app/app/README.md
file added
+18
1.8/test/import-without-vendor-app/app/go-md2man.1.md
file added
+23
1.8/test/import-without-vendor-app/app/md2man.go
file added
+51
1.8/test/import-without-vendor-app/app/md2man/md2man.go
file added
+19
1.8/test/import-without-vendor-app/app/md2man/roff.go
file added
+301
1.8/test/import-without-vendor-app/app/md2man/roff_test.go
file added
+83
1.8/test/import-without-vendor-app/s2i-build
file added
+2
1.8/test/run
file added
+170
1.8/test/simple-app/app/hello.go
file added
+28
1.8/test/simple-app/s2i-build
file added
+2
    Add some siple tests
    
        
file added
+170