Skip to content
  • This project
    • Loading...
  • Sign in

张磊 / FileStorageBeego

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • FileStorageBeego
  • config_test.go
  • Jared Folkins's avatar
    added FlashName,FlashSeperator, & Tests · 49513148
    Jared Folkins committed 2014-03-13 22:34:22 -0700
    49513148
config_test.go 247 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package beego

import (
	"testing"
)

func TestDefaults(t *testing.T) {
	if FlashName != "BEEGO_FLASH" {
		t.Errorf("FlashName was not set to default.")
	}

	if FlashSeperator != "BEEGOFLASH" {
		t.Errorf("FlashName was not set to default.")
	}
}