remove a useless test, add test for IsSuperGroup
parent
c3304ed8a7
commit
a274ce7a9f
|
@ -22,16 +22,6 @@ func TestUserStringWithUserName(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestMessageIsGroup(t *testing.T) {
|
|
||||||
from := tgbotapi.User{ID: 0}
|
|
||||||
chat := tgbotapi.Chat{ID: 10}
|
|
||||||
message := tgbotapi.Message{From: from, Chat: chat}
|
|
||||||
|
|
||||||
if message.IsGroup() != true {
|
|
||||||
t.Fail()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestMessageTime(t *testing.T) {
|
func TestMessageTime(t *testing.T) {
|
||||||
message := tgbotapi.Message{Date: 0}
|
message := tgbotapi.Message{Date: 0}
|
||||||
|
|
||||||
|
@ -65,6 +55,14 @@ func TestChatIsChannel(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestChatIsSuperGroup(t *testing.T) {
|
||||||
|
chat := tgbotapi.Chat{ID: 10, Type: "supergroup"}
|
||||||
|
|
||||||
|
if !chat.IsSuperGroup() {
|
||||||
|
t.Fail()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestFileLink(t *testing.T) {
|
func TestFileLink(t *testing.T) {
|
||||||
file := tgbotapi.File{FilePath: "test/test.txt"}
|
file := tgbotapi.File{FilePath: "test/test.txt"}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue