Skip to content

Commit 6845297

Browse files
committed
Rebranding workfit to voicera
1 parent e8ef4e2 commit 6845297

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2017, Workfit
3+
Copyright (c) 2017, Voicera
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Tester: Test More, Type Less
22

3-
[![Build Status](https://travis-ci.org/workfit/tester.svg?branch=master)](https://travis-ci.org/workfit/tester)
4-
[![Go Report Card](https://goreportcard.com/badge/github.com/workfit/tester)](https://goreportcard.com/report/github.com/workfit/tester)
5-
[![GoDoc](https://godoc.org/github.com/workfit/tester?status.svg)](https://godoc.org/github.com/workfit/tester)
3+
[![Build Status](https://travis-ci.org/voicera/tester.svg?branch=master)](https://travis-ci.org/voicera/tester)
4+
[![Go Report Card](https://goreportcard.com/badge/github.com/voicera/tester)](https://goreportcard.com/report/github.com/voicera/tester)
5+
[![GoDoc](https://godoc.org/github.com/voicera/tester?status.svg)](https://godoc.org/github.com/voicera/tester)
66

77
Lightweight test utilities to use with Go's testing package.
88

@@ -24,15 +24,15 @@ and consistency. By using test utilities, you can spend more time thinking about
2424
test strategies and less time typing boilerplate code.
2525

2626
## Quick Start
27-
Get the latest version (`go get -u github.com/workfit/tester`) then test away:
27+
Get the latest version (`go get -u github.com/voicera/tester`) then test away:
2828

2929
```go
3030
package hitchhiker
3131

3232
import (
3333
"testing"
3434

35-
"github.com/workfit/tester/assert"
35+
"github.com/voicera/tester/assert"
3636
)
3737

3838
func TestDeepThought(t *testing.T) {
@@ -45,7 +45,7 @@ func TestDeepThought(t *testing.T) {
4545
```
4646

4747
## Learn More
48-
The following can also be found at <https://godoc.org/github.com/workfit/tester>
48+
The following can also be found at <https://godoc.org/github.com/voicera/tester>
4949

5050
### Assertions
5151
Package `assert` provides a more readable way to assert in test cases;

ddt/ddt_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"os"
66
"testing"
77

8-
"github.com/workfit/tester/assert"
9-
"github.com/workfit/tester/ddt"
8+
"github.com/voicera/tester/assert"
9+
"github.com/voicera/tester/ddt"
1010
)
1111

1212
const vanillaContent = `{

ddt/examples_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"fmt"
55
"testing"
66

7-
"github.com/workfit/tester/assert"
8-
"github.com/workfit/tester/ddt"
7+
"github.com/voicera/tester/assert"
8+
"github.com/voicera/tester/ddt"
99
)
1010

1111
func ExampleLoadTestCasesFromDerivedJSONFile() {

0 commit comments

Comments
 (0)