Consider the data set davis.data which, among other things gives the reported weight (repwt) and actual weight (weight) of some experimental subjects (reported weight is what they said they weighed). The idea here is that we would like to just ask people "How much do you weigh?" instead of actually having to weigh them. Thus in the model weighti = β0 + β1repwti + εi we would hope that the slope β1 would be equal to 1.
Of course, we don't expect the data to give a slope exactly equal to one, but we've mentioned the idea of an "eyeball confidence interval" -- take the slope and add and subtract twice the standard error, 2 being a stand-in for 1.96, and the whole thing is a t and not normal anyway, but the idea is that this should be "close enough for government work". You are free to use that kind of confidence interval in this problem. We'd like 1 to be in this confidence interval. If you want to be more pedantically correct, you can use the command confint (assuming you did something like my.mod = lm(...) you then enter confint(my.mod)).