mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 00:39:13 +00:00
feat(tests): add Parallelization where possible (#1823)
* feat(tests): add Parallelization where possible
This commit is contained in:
parent
c0882aff84
commit
4cc0f9cc83
18 changed files with 53 additions and 2 deletions
|
@ -10,6 +10,7 @@ import (
|
|||
)
|
||||
|
||||
func TestIndexerIRCParseMatch_ParseUrls(t *testing.T) {
|
||||
t.Parallel()
|
||||
type fields struct {
|
||||
TorrentURL string
|
||||
TorrentName string
|
||||
|
@ -165,6 +166,7 @@ func TestIndexerIRCParseMatch_ParseUrls(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestIndexerIRCParseMatch_ParseTorrentName(t *testing.T) {
|
||||
t.Parallel()
|
||||
type fields struct {
|
||||
TorrentURL string
|
||||
TorrentName string
|
||||
|
@ -238,6 +240,7 @@ func TestIndexerIRCParseMatch_ParseTorrentName(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestIRCParserGazelleGames_Parse(t *testing.T) {
|
||||
t.Parallel()
|
||||
type args struct {
|
||||
rls *Release
|
||||
vars map[string]string
|
||||
|
@ -316,6 +319,7 @@ func TestIRCParserGazelleGames_Parse(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestIRCParserOrpheus_Parse(t *testing.T) {
|
||||
t.Parallel()
|
||||
type args struct {
|
||||
rls *Release
|
||||
vars map[string]string
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue