I had the same issue. I've fixed it by changing this line
mock.Setup(r => r.GetEnumerator()).Returns(queryable.GetEnumerator());
to
mock.Setup(r => r.GetEnumerator()).Returns(queryable.GetEnumerator);
I hope that additional comments are not required here.