mirror of
https://github.com/rjNemo/go-pass-gen
synced 2026-06-12 13:46:49 +00:00
move tests
This commit is contained in:
parent
3757c69c60
commit
c98c1e7a71
2 changed files with 5 additions and 3 deletions
|
|
@ -1,9 +1,10 @@
|
||||||
package cmd
|
package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"log"
|
||||||
|
|
||||||
"github.com/fatih/color"
|
"github.com/fatih/color"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
"log"
|
|
||||||
|
|
||||||
"password-generator/passGen"
|
"password-generator/passGen"
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,11 @@
|
||||||
package main
|
package passGen_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"math/rand"
|
"math/rand"
|
||||||
"password-generator/passGen"
|
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"password-generator/passGen"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestGeneratePasswordWithGivenCharacterNumber(t *testing.T) {
|
func TestGeneratePasswordWithGivenCharacterNumber(t *testing.T) {
|
||||||
Loading…
Reference in a new issue