mirror of
https://github.com/astaxie/beego.git
synced 2024-11-23 00:00:54 +00:00
Remove MarkDown test
This commit is contained in:
parent
d31ac49ead
commit
6b5dc3b7d5
@ -1,7 +1,6 @@
|
|||||||
package beego
|
package beego
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"html/template"
|
|
||||||
"net/url"
|
"net/url"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
@ -18,68 +17,6 @@ func TestWebTime(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestMarkDown(t *testing.T) {
|
|
||||||
raw := `## beego
|
|
||||||
|
|
||||||
[![Build Status](https://drone.io/github.com/astaxie/beego/status.png)](https://drone.io/github.com/astaxie/beego/latest)
|
|
||||||
|
|
||||||
beego is a Go Framework which is inspired from tornado and sinatra.
|
|
||||||
|
|
||||||
It is a simply & powerful web framework.
|
|
||||||
|
|
||||||
|
|
||||||
## Features
|
|
||||||
|
|
||||||
* RESTFul support
|
|
||||||
|
|
||||||
## Documentation
|
|
||||||
|
|
||||||
[English](https://github.com/astaxie/beego/tree/master/docs/en)
|
|
||||||
|
|
||||||
## LICENSE
|
|
||||||
|
|
||||||
beego is licensed under the Apache Licence, Version 2.0
|
|
||||||
(http://www.apache.org/licenses/LICENSE-2.0.html).
|
|
||||||
|
|
||||||
|
|
||||||
## Use case
|
|
||||||
|
|
||||||
- Displaying API documentation: [gowalker](https://github.com/Unknwon/gowalker)
|
|
||||||
`
|
|
||||||
output := `<h2>beego</h2>
|
|
||||||
|
|
||||||
<p><a href="https://drone.io/github.com/astaxie/beego/latest">![Build Status](https://drone.io/github.com/astaxie/beego/status.png)</a></p>
|
|
||||||
|
|
||||||
<p>beego is a Go Framework which is inspired from tornado and sinatra.</p>
|
|
||||||
|
|
||||||
<p>It is a simply & powerful web framework.</p>
|
|
||||||
|
|
||||||
<h2>Features</h2>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
<li>RESTFul support</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<h2>Documentation</h2>
|
|
||||||
|
|
||||||
<p><a href="https://github.com/astaxie/beego/tree/master/docs/en">English</a></p>
|
|
||||||
|
|
||||||
<h2>LICENSE</h2>
|
|
||||||
|
|
||||||
<p>beego is licensed under the Apache Licence, Version 2.0
|
|
||||||
(http://www.apache.org/licenses/LICENSE-2.0.html).</p>
|
|
||||||
|
|
||||||
<h2>Use case</h2>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
<li>Displaying API documentation: <a href="https://github.com/Unknwon/gowalker">gowalker</a></li>
|
|
||||||
</ul>
|
|
||||||
`
|
|
||||||
if MarkDown(raw) != template.HTML(output) {
|
|
||||||
t.Error("should be equal")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestSubstr(t *testing.T) {
|
func TestSubstr(t *testing.T) {
|
||||||
s := `012345`
|
s := `012345`
|
||||||
if Substr(s, 0, 2) != "01" {
|
if Substr(s, 0, 2) != "01" {
|
||||||
|
Loading…
Reference in New Issue
Block a user