cfssljson_test.go 299 B

123456789101112131415161718192021
  1. package main
  2. import (
  3. "testing"
  4. )
  5. func TestReadFile(t *testing.T) {
  6. _, err := readFile("-")
  7. if err != nil {
  8. t.Fatal(err)
  9. }
  10. file, err := readFile("./testdata/test.txt")
  11. if err != nil {
  12. t.Fatal(err)
  13. }
  14. if string(file) != "This is a test file" {
  15. t.Fatal("File not read correctly")
  16. }
  17. }